Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anishlearnstocode/cmd-line-shortcuts
Important command line shortcuts for different tools
https://github.com/anishlearnstocode/cmd-line-shortcuts
cli cli-tools cmd command-line command-line-tool git homebrew shortcut
Last synced: about 1 month ago
JSON representation
Important command line shortcuts for different tools
- Host: GitHub
- URL: https://github.com/anishlearnstocode/cmd-line-shortcuts
- Owner: anishLearnsToCode
- Created: 2023-11-06T13:33:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-15T08:44:01.000Z (9 months ago)
- Last Synced: 2024-05-01T20:15:51.956Z (8 months ago)
- Topics: cli, cli-tools, cmd, command-line, command-line-tool, git, homebrew, shortcut
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Command line shortcuts
## ☕️ homebrew
- Check homebrew path: `brew --prefix`## nginx
- Restart nginx: `nginx -s reload`## dnsmasq
- Test if scripts are valid: `dnsmasq --test`
- Start dnsmasq: `sudo dnsmasq`## docker
- List all running machines: `docker ps`
- Enter a machine interactively to see env variables: `docker exec -it ${containerName} bash`
- Stop a container: `docker stop ${containerName}`
- Delete a container: `docker rm ${containerName}`## linux
- Listen to logs: `tail -f /path/to/file`