"find DIR -print0"の結果の先頭に検索ディレクトリDIRが付加されます。
findコマンドの中でこれを無くす方法がありますでしょうか?
(例)
出力したいファイルの確認
$ find tmp/ -type f tmp/myfile2 tmp/myfile1
-print0オプションでの出力状況
$ find tmp/ -print0 -type f tmp/tmp/myfile2tmp/myfile1
sedを使う?
$ find tmp/ -print0 -type f | sed s%tmp/%% tmp/myfile2tmp/myfile1
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/29 05:47
2021/12/29 06:07
2021/12/29 06:51
2021/12/29 07:28 編集
2021/12/29 07:37
2021/12/29 13:30