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.
nfs /dev/sda4シェルスクリプトを使用してconfファイル内のパターンを検索したい。存在する場合は、存在しない場合は無視する必要があります。そのパターンを追加する必要があります
nfs /dev/sda4
nfs /dev/sda4ファイル内に行が見つからない場合、これはファイルの先頭に行を挿入します。
grep -q 'nfs /dev/sda4' file || sed -i 'i\nfs \/dev\/sda4' file
または下部に:
grep -q 'nfs /dev/sda4' file || sed -i '$a\nfs \/dev\/sda4' file