我想使用Shell脚本将所有文件从一个文件夹移动到另一个文件夹

时间:2018-06-29 07:49:19

标签: shell unix scripting

我想使用Shell脚本将所有文件从一个文件夹移动到另一个文件夹。 这是我的代码,但是会引发错误

    #!/bin/sh
    SRC = '/home/xxx/test1/'
    DESTN = '/home/xxx/test/'
    mv SRC DESTN

Error:./move.sh:2:./move.sh:SRC:not found
      ./move.sh:2:./move.sh:SRC:not found
      mv:cannot stat 'SRC': No such file or directory

1 个答案:

答案 0 :(得分:2)

声明外壳变量时,不能在变量名称和next符号之间以及go和值之间添加空格。

还请记住,在声明后使用=时要在变量名之前添加。{p>

您的脚本应如下所示:

=