ダメな例
alias php_grep='grep -rnIH --color=auto --include=*.php $@ *'
良い例
function php_grep () { grep -rnIH --color=auto --include=*.php $@ *; }
functionを使います
Go to list of users who liked
More than 5 years have passed since last update.
ダメな例
alias php_grep='grep -rnIH --color=auto --include=*.php $@ *'
良い例
function php_grep () { grep -rnIH --color=auto --include=*.php $@ *; }
functionを使います
Register as a new user and use Qiita more conveniently
Go to list of users who liked