#!/bin/sh
# Define your function here
Hello () {
echo "Hello World"
}
Hello
以上脚本在ubuntu
中正常运行,但显示以下错误
在redhat machine
"syntax error near unexpected token ' { "
答案 0 :(得分:0)
Ubuntu的shell是bash,但它不是shell错误,因为我使用的是ubuntu而你的程序给我这样的o / p
sh hello.sh Hello World