我正在尝试将已安装的 Ipython 的文件移动到新的目标文件夹。我使用了以下命令,但出现错误,有人可以帮忙吗:
asudipta@asudipta-Inspiron-1525:~/Desktop$ sudo mv ipython-2.1.0~/Documents/ipython-2.1.0
mv: missing destination file operand after ‘ipython-2.1.0~/Documents/ipython-2.1.0’
Try 'mv --help' for more information.
答案1
如果你想移动ipython-2.1.0
来~/Documents/ipython-2.1.0
运行:
mv ipython-2.1.0 ~/Documents/ipython-2.1.0
您的命令在 ipython-2.1.0 和 ~/Documents/ipython-2.1.0 之间缺少一个空格。