Commands I Use
These are the terminal commands I use most frequently. git
and code
are at the tops of all the lists; those are the tools I use the most. On my personal machine, the new_post
script is really a front for code
as that is what I write blog posts in and the personal machine sees more of that than coding these days. fuckingping
is a script I use to check network issues (home network goes through spells of badness). The rest of the top are generally tools I use when working with teams to build products.
On my personal machine:
git
fuckingping
./scripts/new_post.sh
brew
code
echo
cd
ls
date
bimage
./to_hugo.py
man
jq
hugo
./scripts/serve.sh
type
bgame
./scripts/update_date.sh
path_remove
find
On my work machine:
git
pytest
python
docker
code
make
./tools/building/linting.sh
ls
cd
mob
brew
./tools/docker/build_gather_dockers.sh
pylint
venv
npm
./tools/setup/setup_dev_mac.sh
repo
mypy
grep
bdocker
On one of my client machines:
git
npm
cd
code
docker
./gradlew
./project_setup.sh
./onboarding/setup.sh
ls
DEBUG=true
drproxy
echo
curl
./report_large_methods.sh
brew
jq
repo
pgrep
man
nvm
Prompted by posts at Knowing and Doing which was pompted by a post at Third Bit.
I used the script Knowing and Doing posted to generate the lists:
history | awk '{print $2}' | sort | uniq -c | sort -nr