我需要将文件夹 A 复制到文件夹 B,文件夹 A 有子文件夹。我试过 xcopy 和 copy 都卡住了。
C:\Users>xcopy sushantg\A\* sushantg\B /s /e /h /T
Does sushantg\B specify a file name
or directory name on the target
(F = file, D = directory)?
Does sushantg\B specify a file name
or directory name on the target
(F = file, D = directory)?
Run Code Online (Sandbox Code Playgroud) 我想运行以下命令。
找 。-mtime -60s
当我这样做时,我会得到这个输出:
CLIENT% echo `date +%s`-1308741881 | bc
5152
CLIENT% find . -mtime -`echo `date +%s`-1308741881 | bc`s
-1308741881: Command not found.
find: -mtime: -date: illegal time value
CLIENT%
Run Code Online (Sandbox Code Playgroud)
这里发生了什么?