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.
ディレクトリを別のディレクトリに再帰的にコピーしようとすると、エラー メッセージが表示されます。foo がソースで bar がターゲット ディレクトリの場合、次のようなエラーが発生します。
「ファイル「bar/foo」をディレクトリ「foo」で上書きできません
私のtclコマンドは
file mkdir "bar" file copy -force ./foo bar
どこが間違っていますか?
execを使用できます:
exec cp -f ./foo bar
それはいつも私のために働きます。