現在の日付と時刻をファイル名に追加するには、コマンドに何を追加できますか?
find . -maxdepth 1 -type f ! -name "*.*" -exec cp -p -t /new/location {} \+
ベストアンサー1
find . -maxdepth 1 -type f ! -name "*.*" -exec cp -p {} /new/location/{}-$(date +%Y-%m-%d) \;
-t
コマンドからtarget()パラメータを削除し、cp
パスとファイル名を説明しました。
{}
ファイル名のプレースホルダとして使用され、date
目的の形式でaを追加します。
サンプル形式は+%Y-%m-%d
説明が必要です。