DEV Community

Cover image for Bash tips for developers
Maxence Poutord
Maxence Poutord

Posted on • Originally published at maxpou.fr on

Bash tips for developers

Like many developers, I use the terminal on a daily basis.

How my terminal looks like

I actually use 2 different terminals: the one embedded in VScode and iTerm2 (I'm on macOS). Although this post contains the word bash, I don't use it directly. I use zsh with ohmyzsh. If you never heard about it before, it supercharges bash and adds more interactivity. It also gives me interesting feedbacks like the branch and working directory I am currently in.

By the way, if you like the theme I'm using, feel free to steal my dotfiles. Also, I won't be covering the Git part as I already did in this blog post.

Cheatsheet

How many ".js" files does this folder contains?

find . -name "*.js" | wc -l

# You can also exclude a folder (i.e. node_modules)
find . -name "*.js" -not -path " **/node_modules/**" | wc -l

Enter fullscreen mode Exit fullscreen mode

How many lines of code in this folder?

find . -name '*.vue' | xargs wc -l

# You can also exclude a folder (i.e. node_modules)
find . -name '*.vue' -not -path " **/node_modules/**" | xargs wc -l

Enter fullscreen mode Exit fullscreen mode

Find all occurrences

Example: list where "console.log" is used in the codebase.

grep -Ril "console.log" .

# You can also exclude folders (i.e. .cache and node_modules)
grep -Ril "console.log" . --exclude-dir={\*cache,node_modules\*}

Enter fullscreen mode Exit fullscreen mode

How big is my folder?

Example: list where "console.log" is used in the codebase.

du -sh .

# same but excluding git folder
du -sh -I .git .

Enter fullscreen mode Exit fullscreen mode

What about Vim?

SpaceVim a game changer for vim

I mostly use Vim for Git commits. It can also be handy when your IDE struggle to open 10 0000 lines long files. To pimp my vimβ„’, I installed something called SpaceVim. It adds fancy things like a file explorer and the syntax color.

Aliases

RAM consumption

alias ram='ps aux | awk '"'"'{print $6/1024 " MB\t\t" $11}'"'"' | sort -rn | head -25'

# Usage
$ ram
507.039 MB /usr/local/bin/node
461.391 MB /Applications/Brave
358.879 MB /Applications/Visual
...

Enter fullscreen mode Exit fullscreen mode

πŸ΄β€β˜ οΈ Change your mac address

This one is not really tech-related. I mostly use this one in airports/coffee shops to renew mac address (and get illimited access).

function airport() {
  local mac=$(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//')
  sudo ifconfig en0 ether $mac
  sudo ifconfig en0 down
  sudo ifconfig en0 up
  echo "Your new physical address is $mac"
}

Enter fullscreen mode Exit fullscreen mode

πŸ™ƒ The Russian Roulette

alias russian-roulette='
  [$(( $RANDOM % 6 )) == 0] && rm -rf / || echo "You live"'

Enter fullscreen mode Exit fullscreen mode

If you like to live on the edge... but please, be smart! And don't run commands you don't know the effects of!

Bonus #1: Tree

I use tree to display directories as trees. It very cool to write documentation.

$ tree content/pages

β”œβ”€β”€ components
β”‚ β”œβ”€β”€ button.js
β”‚ └── checkbox.jpg
β”œβ”€β”€ pages
β”‚ β”œβ”€β”€ about.js
β”‚ └── dashboard.js
β”œβ”€β”€ index.js
└── README.md

Enter fullscreen mode Exit fullscreen mode

Bonus #2: Gtop

Gtop is a system monitoring dashboard. Typing Gtop on my keyboard is usually quicker than opening the activity monitor (for some unknown reasons I always struggle to find it).

how gtop looks like


And you, what's your favourite bash tip?


Thank you for taking the time to read this post. I hope you found it useful! If you liked it, please give it a ❀️ or a πŸ¦„! Also, feel free to comment or ask questions in the section below or on Twitter @_maxpou :)


Originally published on maxpou.fr.

Top comments (0)