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.
fish で実行された次のコマンドを参照してから、bash を実行します。
tmp ) touch file1 file2 file3 file4 tmp ) find . -exec echo {} \; tmp ) bash ^_^ ~/tmp > find . -exec echo {} \; . ./file3 ./file2 ./file1 ./file4
なぜ魚は理解できないのecho {} \;ですか?
echo {} \;
カールに感謝します。
{魚に}は特別な意味があります。を使用するには、エスケープする必要がありますfind。次に例を示します。
{
}
find
find . -exec echo \{\} \;