1
Bash脚本移动文件
我是初学者,需要帮助。 我正在尝试制作一个脚本,以将文件从一个目录移动到另一个目录。在创建脚本之前,我测试了该命令,该命令已正常工作: mv /path/to/source /path/to/destination 用nano以下命令制作脚本后: #!bin/bash/ echo "mv /path/to/source /path/to/destination" 我已使用:将脚本chmod +x file 设为可执行文件,然后执行为,./file但出现以下错误: bash: ./move.sh: /bin/bash/: bad interpreter: Not a directory 我尝试过与with sudo ./file和bash文件一起使用,但无法正常工作。 我正在使用随VirtualBox一起安装的Ubuntu。
11
scripts