find: patternA or patternB
2008年08月02日 (linux)
command
# find / -name "*bashrc" -or -name "*bash_profile" #1 # find / -name "*bashrc" -or -name "*bash_profile" | grep -v root #2 1./以下の"*bashrc"もしくは"*bash_profile"に一致したものを検索. 2.1+grepパイプ,文字列rootの出力行を除外.
note
cf. % man find % man grep % grep --help | grep invert invert : 〜を逆さまにする,ひっくり返す
PR
Comment