我想将目录(pscp)从Windows服务器复制到Linux服务器 Linux服务器上的目标位置名称必须每次都是新的。当我运行以下命令时,
> pscp -p -l root
> -pw mypassword -r C:\ProgramFiles\Mybackups\root@linux_server:/root/mywindowsbackups/$(date)
命令替换$(date)不起作用。 任何人都可以建议我如何运行这个?
答案 0 :(得分:0)
尝试以下方法:
:: This is stripping the `/` and `Day of the Week` from the date
set target_date=%date:/=-%
set target_date=%target_date:* =%
:: Copying the directory to the linux server based on this system's date
pscp -p -l root
-pw mypassword -r C:\ProgramFiles\Mybackups\root@linux_server:/root/mywindowsbackups/%target_date%