Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我正在使用的代码:
cd /home if [ -d ${homedir} ] then ln -s /etc/cpbackup-exclude.conf ${homedir}/cpbackup-exclude.conf fi done
现在我收到了这个错误:
bash: In: command not found
我正在尝试cpbackup-exclude为所有帐户创建一个符号链接。
cpbackup-exclude
你打错ln (LN)了 asIn (IN)或类似的东西。正确的命令是ln,如“Lima November”。该命令ln是“链接”一词的缩写,它是该命令的主要功能。
ln (LN)
In (IN)
ln
$PATH 变量可能在脚本执行期间未正确设置。尝试使用 ln 命令的绝对路径。通常这是/bin/ln.
/bin/ln
使用绝对路径:
/usr/bin/ln
您的 ln 实用程序可能会在这里。