Shell 脚本根据上传位置重命名
Shell Scripts Renaming based on upload location
好的,这是我的问题,我有一个 zip 文件,目前正在将其自身推到两个不同位置的 SUV
我现在想使用参数根据 zip 文件的去向重命名它
例如,如果它要 folder_1 我想称它为 flyaway.zip
如果要 folder_2 我希望它被称为 gohome.zip
我该怎么做,这里有一个文件路径的例子
我想更改的 zip 是 mega,我想根据它的去向给它两个不同的名称
scp Mega.zip root@<the su>:/data/path/finalpath1
scp Mega.zip root@<the su>:/data/path/finalpath2
感谢您提供的任何帮助
除了指定目标目录外,scp
还允许您指定目标名称,就像使用 cp
:
一样
scp Mega.zip root@<the su>:/data/path/finalpath1/flyaway.zip
scp Mega.zip root@<the su>:/data/path/finalpath2/gohome.zip
好的,这是我的问题,我有一个 zip 文件,目前正在将其自身推到两个不同位置的 SUV
我现在想使用参数根据 zip 文件的去向重命名它
例如,如果它要 folder_1 我想称它为 flyaway.zip
如果要 folder_2 我希望它被称为 gohome.zip
我该怎么做,这里有一个文件路径的例子
我想更改的 zip 是 mega,我想根据它的去向给它两个不同的名称
scp Mega.zip root@<the su>:/data/path/finalpath1
scp Mega.zip root@<the su>:/data/path/finalpath2
感谢您提供的任何帮助
除了指定目标目录外,scp
还允许您指定目标名称,就像使用 cp
:
scp Mega.zip root@<the su>:/data/path/finalpath1/flyaway.zip
scp Mega.zip root@<the su>:/data/path/finalpath2/gohome.zip