Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
alias cgrep='current_dir_grep' function current_dir_grep_exact { grep -w $1 . } alias cgrepe='current_dir_grep_exact'
grep -w 'label for' .動作しますが、現在のディレクトリでの出現を見つけたいときcgrepe 'label for'の出現のみを検索します。labellabel for
grep -w 'label for' .
cgrepe 'label for'
label
label for
ではbash(1)、エイリアスは引数を取りません。あるように見えることもありますが、そうではありません。関数を使用します。
bash(1)