DRYな備忘録

Don't Repeat Yourself.

atom command not found

Problem

# MacOS
% atom .
zsh: command not found: atom
% which atom
atom not found

Anything can’t exist without Atom

Research

Solution

% which atom
atom not found
% /Applications/Atom.app/Contents/Resources/app/atom.sh
# and close the window just opened
% which atom
/usr/local/bin/atom
% atom .

It works.