출처:http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/
환경: csh, tcsh
(X)
find . -name SEARCH-ITEM 2 > /dev/null
(O)
(find . -name SEARCH-ITEM > /dev/tty) > & /dev/null
출처:http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/
환경: csh, tcsh
(X)
find . -name SEARCH-ITEM 2 > /dev/null
(O)
(find . -name SEARCH-ITEM > /dev/tty) > & /dev/null
sgrepall() # find string in all files { find . -type f -print | xargs grep $1 # find . -type f -name "*.c" -print | xargs grep $1 # find . -type f -name "*.cp" -print | xargs grep $1 # find . -type f -name "*.h" -print | xargs grep $1 }
##### END
#### HP-UX tcsh (BEGIN)
alias sgrep 'find ./ -type f -exec grep \!* {} /dev/null \;'
#### HP-UX tcsh (END)
find . -name "*.php" | xargs perl -pi -e 's/\<\?/\<\?php/g'
원 출처는