Gil Desmarais

‹ back to the overview

How I work, part 2: the command line

Table of contents

This is the second part of my “How I work” series. In case you missed it, read the first part here. In this part I will document with which tools I work on the command line.

I keep the configuration of most tools inside a so-called dotfiles repository. This allows me to sync my configuration between machines. To manage the dotfiles on my machines, I use rcm and version control them with git.

While most tools do one thing good, chaining them by piping (|) or redirecting their output (>, <) makes working with the command line powerful and efficient. You need just a part of the output? No problem: pipe it to awk and choose only what you need.

Although I like the green colored characters on dark background scrolling by, they need to get out of the way quickly. I’m one of these computer users who clear the scrollback buffer with Cmd+K often.

  • A screenshot of iTerm2 running ZSH and homebrew

ZSH and its configuration

zsh is my shell of choice. While I started with the oh-my-zsh configuration framework years ago, I’ve switched to prezto recently. The main reason was the time it took to start a new session. With prezto the startup time improved noticeably. It comes with a auto suggestion feature out of the box, so it’ll save you some typing later.

My .zshrc contains many aliases to save me some typing on reoccurring tasks. Some configuration options stand out and I’ll describe what they do in the next sections.

Move the cursor by words with Alt + arrow keys

To use Alt+ and Alt+ to jump words with cursor, add this to your .zshrc:

bindkey "^[^[[C" forward-word
bindkey "^[^[[D" backward-word

history + ! = 💕

history gives a list of recent commands. Each line command has a prefixed number. Type that number with a prefixed exclamation mark, e.g. !1729 and hit space to expand to that command.

I search the history with history | grep foobar often. To make things a bit easier, I’ve setup an alias for it:

alias hgrep="history | grep"

You can also search using Ctrl+R or use history | sk (see below for sk).

Beside cd, cd .. (in zsh you can omit cd and type just .. or even ….), I use pushd and popd to move back and forth between directories.

Whenever I create a new directory with mkdir -p ~/whatever/foo/bar/baz I like to change to it directly with cd $_.

z: jump between recently visited directories

ZSH-z is a tool to jump between directories you’ve visited recently. It’s fuzzy-matching those and changes to the most often used path.

z foobar changes the working directory to e.g. /Users/gil/projects/foobar/.

Version and package managers

Since I write code I need to install the environment to run that code in. Since every project has its own needs it’s not suitable to go with one globally installed version. I’ve used rvm and nvm before switching to asdf vm.

Since I work with Ruby and NodeJS a lot, I need their package managers, too:

I don’t bother to install software manually on my machine. homebrew exists and I can find almost anything to brew install I want.

Standard tools

What follows is a list of tools I use with a short description. Most of them are installable with homebrew out of the box. Try brew search foobar.

Finding files, content or directories

Create, read, manipulate, save and delete files

Miscellaneous

The following tools are also in my toolbox. I file them under Miscellaneous as the amount would not justify categories on their own in this post. That does not mean that I use them less… most of them are invaluable.

These are helpful when dealing with (not only) remote systems:

Sometimes you want to download something or need to make raw HTTP requests:

Directly using ffmpeg with youtube-dl illustrates the power of the command line. Basic example:

youtube-dl -f bestaudio --exec 'ffmpeg -i {} {}.mp3 && rm {}'

Outlook

That’s it for the second part. The third part will inspect which GUI applications I use on macOS. Stay tuned.