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.
ファイル内の文字列を見つける方法しか見つかりませんでしたが、コメント行を置き換えるにはどうすればよいですか?また、それらをどのように正確に置き換える必要がありますか?
#!/bin/sh echo enter file name read fname exec<$fname while read line do echo $line; done
パターンに一致する名前のファイルを移動するには.gitignore、次のループを試してください。
.gitignore
while read pattern; do echo mv $pattern /var/tempdir done < .gitignore
このループの出力がコマンドの正しいリストのように見える場合は、「echo」という単語を削除し、ループを再度実行して実際にファイルを移動します。