https://github.com/dfithian/bashisms
https://github.com/dfithian/bashisms
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dfithian/bashisms
- Owner: dfithian
- License: mit
- Created: 2023-01-10T20:04:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-09T14:49:58.000Z (over 3 years ago)
- Last Synced: 2025-06-27T13:45:37.273Z (12 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bashisms
Annotated commands and utilities, persisted to help me remember them.
# commands
```bash
top # then press "1" to get CPU% per core
ps faxwu # subprocess tree, add more w's for more info
ps axl
lsof -p # list open files, look for pipes
strace -p # look at the syscalls for this process
strace -f # follow a command - everything and everything it forks
free -h # human readable
```
# nix
```bash
nix-shell --option fallback true --option substitute false # if hydra is down
```