https://github.com/dfithian/bashisms
https://github.com/dfithian/bashisms
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dfithian/bashisms
- Owner: dfithian
- License: mit
- Created: 2023-01-10T20:04:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-09T14:49:58.000Z (over 2 years ago)
- Last Synced: 2025-01-29T11:11:27.129Z (4 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 coreps faxwu # subprocess tree, add more w's for more info
ps axllsof -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 forksfree -h # human readable
```# nix
```bash
nix-shell --option fallback true --option substitute false # if hydra is down
```