我有一个名为自动安装的脚本:
#!/usr/bin/sh
echo "Installasi membutuhkan free space minimal 2MB, pastikan ada punya cukup space di router anda"
read -p "Anda yakin ingin melanjutkan installasi?(y/n) " -n 1 -r
echo ""
if [[ $REPLY = ^[Yy]$ ]]
then
cd /
cd /tmp/
tar -xvf OpenWrt_Angel_Beats_Edition_v1.3.3.tar -C /
chmod -R 744 /root/crt
chmod 744 /www/wget/wget_download.sh
chmod 744 /usr/bin/gsm
chmod 744 /usr/bin/profile
opkg update && opkg install elinks
cp /etc/rc.local /etc/rc.local.backup
cat > /etc/rc.local << END
#!bin/sh
# /etc/rc.local: Local system initialization script.
#
# Put any local startup commands in here. Also, if you have
# anything that needs to be run at shutdown time you can
# make an /etc/rc.d/rc.local_shutdown script and put those
# commands in there.
sh /www/wget/wget_download.sh > /dev/null 2>&1 &
exit 0
END
killall sh /www/wget/wget_download.sh
sh /www/wget/wget_download.sh > /dev/null 2>&1 &
echo "File backup /etc/rc.local.backup telah dibuat, gunakan file ini untuk mengembalikan konfigurasi rc.local anda yang dulu jika diperlukan"
echo "Installasi selesai. Jangan lupa di akun openvpn yang digunakan (/root/crt/xxx.ovpn) tambahkan baris ini:
script-security 2
up client-connect.sh"
else
echo ""
echo "Installasi dibatalkan"
fi
我放在第一行的每个命令总是得到上面的错误(line 1:xxx not found
),我确定我输入了正确的命令,即使echo
给出了这样的错误,我该如何解决?
答案 0 :(得分:6)
这里可能存在两个问题:
该文件不存在。通常,对于sh
,路径为/bin/sh
,因此应为#!/bin/sh
您正在Windows上编辑该文件。 Windows使用CR + LF作为行尾。 Unix(和Linux)只使用LF。因此,对于Linux,该命令显示“执行/bin/sh<CR>
并且sh<CR>
不存在。
解决方案:编辑文件时,请确保使用Unix行结尾。
答案 1 :(得分:0)
该文件可能是使用插入Unicode BOM(字节顺序标记)的编辑器编辑的。
查看第一行内容:
od -c autoinstall | head -1
或
hd -n 16 autoinstall
如果您在#!/usr/bin/sh
之前看到意外字符,则可以尝试使用此处描述的方法之一Using awk to remove the Byte-order mark来移除BOM。