我开始学习Linux shell脚本,当我写这个脚本时出现错误,
./my_script: 4: read: Illegal option -n
./my_script: 5: ./my_script: [[: not found
我发现它是因为#!/ bin / sh 行,我仍然可以在没有该行的情况下运行脚本,但它不会执行 / n 等代码
#!/bin/sh
# Shell installer for gurb customizer. by Naveen Gamage.
OS=$(lsb_release -si)
ARCH=$(uname -m | sed 's/x86_//;s/i[3-6]86/32/')
VER=$(lsb_release -sr)
grabninstall() {
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer
}
echo "Installer for GRUB CUSTOMIZER\n"
echo "GURB CUSTOMIZER"
echo "A tool for editing and configuring boot menu (GRUB2/BURG).\n"
read -p "Do you want to install Grub Customizer for $OS ${VER} [$ARCH] ? (Y/n) " -n 1
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "The installer is downloading and installing GRUB Customizer!";
echo "This action may require your password.\n";
grabninstall
else
echo "user quit"
echo "Installation was unsuccessful."
fi
我在Ubuntu 12.10上这样做。
和,其中sh 提供此输出
/bin/sh
知道我哪里做错了吗?
答案 0 :(得分:2)
问题是您使用/bin/sh
来运行脚本和系统/bin/sh -> dash
。这意味着dash
正在执行您的脚本。 dash
shell不支持[[
,但bash
支持#!/bin/sh
。因此,您应该将脚本中的第一行(称为Shebang)从#!/bin/bash
更改为[[
。
或者,不要在脚本中使用dash
。仅使用dash
支持的功能。
另请参阅this Ubuntu page {{1}}中不支持哪些结构。