-2

我有一个 bash 脚本,它创建一个目录(如果不存在)并将所有文件移动到新创建的目录。

我返回的 bash 脚本不起作用,收到的错误是

./move.sh: line 5: =/data/student/stud_done_11-11-2013: No such file or directory

already present
mv: missing destination file operand after `a.xml'
Try `mv --help' for more information.

bash 脚本是:

# Back up

if [ $# = 1 ]
then
  $dir="/data/student/stud_done_$1"
  echo $dir
  if [ ! -d $dir ]; then
    mkdir $dir
  else
    echo "already present"
  fi
  cd  /data/student/stud_ready
  mv * $dir
else
  echo "No files to move"
fi

我调用脚本如下:

./move.sh "11-11-2013"

我的脚本中有什么错误。

4

1 回答 1

2

这里(第 5 行)...

$dir="/data/student/stud_done_$1"

你的意思是...

dir="/data/student/stud_done_$1"
于 2013-11-11T03:24:42.763 回答