ほとんどの行が繰り返されるtxtファイルがあり、「find」を含むすべての行で変更し、最後の「/」を区切り、その後に「 -name 」を追加します。
テキストファイル:
find /etc/cron.*
find /etc/inet.d/*.conf
find /etc/rc*
grep root /etc/passwd
期待されるビュー:
find /etc/ -name cron.*
find /etc/inet.d/ -name *.conf
find /etc/ -name rc*
grep root /etc/passwd