当前位置: 技术问答>linux和unix
如何让shell脚本支持中文?
来源: 互联网 发布时间:2015-11-20
本文导语: 我试过Red Hat多个版本的Linux,在shell脚本中都不支持中文,哪怕是注释都不可以,下面是测试的情况 [root]# cat test #这是测试的例子 echo "hello" [root]# ./test bash: ./test: cannot execute binary file [root]# 要怎样才可以在shell...
我试过Red Hat多个版本的Linux,在shell脚本中都不支持中文,哪怕是注释都不可以,下面是测试的情况
[root]# cat test
#这是测试的例子
echo "hello"
[root]# ./test
bash: ./test: cannot execute binary file
[root]#
要怎样才可以在shell脚本中使用中文注释呢?
[root]# cat test
#这是测试的例子
echo "hello"
[root]# ./test
bash: ./test: cannot execute binary file
[root]#
要怎样才可以在shell脚本中使用中文注释呢?
|
在第一行加上#!/bin/sh 试试
|
帮顶。
不过,根据提示好像不是注释的问题哦。
看下面高手如何说....
不过,根据提示好像不是注释的问题哦。
看下面高手如何说....
|
用cat -v看看是不是shell脚本中有控制字符
|
chmod u+x ./test