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.
私はシェルスクリプトが初めてで、次のことを理解しようとしています。
特定の文字列を含む行をファイルで検索し、その行が存在する場合はその行を新しいファイルにコピーする方法は?
grep "string" file >copyFile
これにより、新しいファイルが作成されるか、既存のファイルが空になります。
grep "string" file >>copyFile
これにより、新しいファイルが作成されるか、見つかった文字列が既存のファイルに追加されます。
注:"string"は正規表現です。man grep構文を見てください。
"string"
man grep