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.
コピーしたいファイル名の文字列を取得しました。ただし、これらのファイルの一部のみが存在します。私の現在のスクリプトは次のようになります。
echo $x | xargs -n 1 test -f {} && cp --target-directory=../folder/ --parents
ただし、常にtest: {}: binary operator expectedエラーが発生します。
test: {}: binary operator expected
どうやってやるの?