zsh

oh-my-zsh チートシート

zsh

Table of Contents 1 コマンド 2 ディレクトリ (~/.oh-my-zsh/lib/directories.zsh) 3 タブ補完(オプションや説明文を表示する) 4 Git 4.1 current_branch 関数で動的に現在のブランチ名を操作する 4.2 git 操作のエイリアス 4.3 ディレクトリ操作 1 コマン…

フルパスを得る

zsh

function fullpath { find `pwd` -maxdepth 1 -name $* 2>/dev/null } 例 $ cd /var/log $ fullpath messages /var/log/messages 参考: http://q.hatena.ne.jp/1182230458