
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
cm1 is a simple CLI tool for managing frequently run commands. It can be used to memorize chain of CLI commands, create short key aliases for easy recall and run processes at a later time.
Cm1 also provides a simple web GUI for managing commands https://cm1cs.herokuapp.com/ .. This is particularly useful if you use / run same commands on different devices or if you are changing devices altogether. You can manage these commands from the web gui, pull them into your local device using the token generated from the GUI.
npm install -g cm1
cm1 --add "git add --all && git commit -am {optional_placeholder}" basic-commit
Memorize the chained commands "git add --all && git commit -am {optional_placeholder}" and index with the key basic-commit
cm1 basic-commit "Init cm1 repository"
Run the command[s] indexed with basic-commit
passing "Init cm1 repository" as a replacement for any placeholders in the indexed command:
git add --all && git commit -am "Init cm1 repository"
cm1 basic-commit "Init cm1 repository" --noexec
Just echo command on the CLI:
git add --all && git commit -am "Init cm1 repository"
cm1 --list
Key: gc Command: git commit -am {message} && git push origin {branch} To run: cm1 gc Key: gr Command: sudo rm -fr .git To run: cm1 gr
cm1 -r basic-commit bc
Running cm1 bc "some commit message"
will now do git add --all && git commit -am "some commit message"
cm1 -m bc "git add --all && git commit -am {commitmessage} && git push origin {branchname}"
cm1 --clear bc
cm1 --clear
cm1 --init tokenvalue [-d]
Token can be gotten from https://cm1cs.herokuapp.com/. If the -d flag is passed, tokenvalue will also be set as the default token to use with cm1.
cm1 --default tokenvalue
cm1 --push
cm1 --pull [-f]
If -f flag is passed, pulled commands will overwrite existing commands in local storage else, a merge is made.
FAQs
Command Recaller
We found that cm1 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.