当前位置: 技术问答>linux和unix
请教关于shell脚本的问题
来源: 互联网 发布时间:2016-12-12
本文导语: 我的系统是centos 脚本如下 #!/bin/sh `clear` 执行时报如下错 : command not found : command not found 但是clear命令是被执行了的,请问为什么会报: command not found呢? | 直接写clear就好吧 | 看下...
我的系统是centos
脚本如下
#!/bin/sh
`clear`
执行时报如下错
: command not found
: command not found
但是clear命令是被执行了的,请问为什么会报: command not found呢?
脚本如下
#!/bin/sh
`clear`
执行时报如下错
: command not found
: command not found
但是clear命令是被执行了的,请问为什么会报: command not found呢?
|
直接写clear就好吧
|
看下是不是shell版本的问题,换成ksh试试呢
#!/usr/bin/ksh
clear
#!/usr/bin/ksh
clear
|
给clear加上全路径试试