由于我现在正在使用ubuntu,因此我创建了一个符号链接来访问我的云存储文件,在以前的Windows操作系统中以NTSF格式保存。 所以我创建了这个简单的.sh文档,以便每次我想使用它们时直接将这些文件发送到我的桌面。它突然停止了工作。我不知道它是什么。任何线索?
#!/bin/bash
#Creates a symbolic link to the NTSF cloud storage programs: One Drive, Google Drive and Drop Box
ln -sf /media/bruno/600CA3990CA368AC/Dokumente\ und\ Einstellungen/bmman/Google\ Drive /home/bruno/Schreibtisch
ln -sf /media/bruno/600CA3990CA368AC/Dokumente\ und\ Einstellungen/bmman/OneDrive /home/bruno/Schreibtisch
ln -sf /media/bruno/600CA3990CA368AC/Dokumente\ und\ Einstellungen/bmman/Dropbox /home/bruno/Schreibtisch
当我在终端中执行此代码时,插入./clouds.sh,它应该在我的桌面上创建三个文件夹,其中包含指向我的云存储文件夹的符号链接。它现在创建三个断开的链接。有时脚本可以工作,有时它只是不起作用,我无法确定导致这种行为的原因。
抱歉天真的问题。我只是从编码开始。
由于