当前位置:  技术问答>linux和unix

简单的SHELL

    来源: 互联网  发布时间:2016-10-30

    本文导语:  先上代码: #!/bin/csh -f if ( -e file ) then echo file exists endif if ( -d file ) then echo file is a directory endif if ( ! -z file ) then echo file is not of zero length  endif if ( -r file && -w file ) then echo file is readabl...

先上代码:

#!/bin/csh -f
if ( -e file ) then
echo file exists
endif

if ( -d file ) then
echo file is a directory
endif

if ( ! -z file ) then
echo file is not of zero length 
endif

if ( -r file && -w file ) then
echo file is readable and writeable
endif


这是书上的例子:

运行,结果却显示:
qch@ubuntu:~/shell$ sh temp.sh
temp.sh: 18: Syntax error: end of file unexpected (expecting "fi")

我上网查了一下,是文件格式的问题
然后,我按网上的方法(http://www.cnblogs.com/langlang/archive/2010/11/27/1889664.html)改了,可还是不行

运行,结果显示:
qch@ubuntu:~/shell$ todos temp.sh
qch@ubuntu:~/shell$ sh temp.sh
temp.sh: 2: Syntax error: word unexpected (expecting "then")

这是怎么回事呢,应该怎样解决?

|
别用sh来执行
首先给文件增加可执行权限,然后直接执行
chmod +x temp.sh
./temp.sh

|
lz用的是csh啊

|

#!/bin/csh -f
if ( -e file ) then
    echo "file exists"
fi

if ( -d file ) then
    echo "file is a directory"
fi


if ( ! -z file ) then
    echo "file is not of zero length" 
fi


if ( -r file && -w file ) then
    echo "file is readable and writeable"
fi


|
直接用csh对其进行解释。/bin/sh应该是borne shell
$ csh sh02.sh 
file is not of zero length
$ sh sh02.sh
sh02.sh: 18: Syntax error: end of file unexpected (expecting "fi")
上面用sh当然有错误了。

|
#!/bin/csh -f
if ( -e file ) then
    echo "file exists"
fi

if ( -d file ) then
    echo "file is a directory"
fi


if ( ! -z file ) then
    echo "file is not of zero length" 
fi


if ( -r file && -w file ) then
    echo "file is readable and writeable"
fi

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Centos6下安装Shell下文件上传下载rz,sz命令
  • 不同类型的shell*(K SHELL , C SHELL) 用命令怎么切换?
  • linux bash shell命令:grep文本搜索工具简介
  • 我在执行shell时,想在shell里直接向mysql数据库插入数据,我该如何写shell。
  • Linux下指定运行时加载动态库路径及shell下执行程序默认路径
  • 菜鸟问问题:shell是什么呢?普通的ls、cp、pwd这些命令算不算shell呢?如何把自己写的文件变成shell呢?
  • linux bash shell命令:文本搜索工具grep中用于egrep和 grep -E的元字符扩展集
  • 傻瓜问题,请问shell编程和shell脚本编程的关系
  • linux bash shell命令:文本搜索工具Grep命令选项及实例
  • shell变量和子shell的问题请教
  • linux bash shell命令:文本搜索工具grep正则表达式元字符集(基本集)
  • 请问“当前shell”和“子shell”的区别?
  • 怎么知道当前是B_SHELL 还是C_SHELL
  • 用户登陆后运行某SHELL退出SHELL就回到LOGIN是怎么作到的?
  • 怎么写shell代码 写好shell怎么运行?
  • 请问一个shell中如何获取这个shell自身抛出的错误?
  • 非登录shell是什么 意思,和登录shell有什么区别啊
  • Solaris 8中修改root的shell为一个非法的Shell后怎么办?
  • 各位Shell高人,如何取得Shell的第10个入口参数?$10不行啊,急!
  • shell 编程 执行shell新建多个终端 并执行程序
  • 如何在一台机器上的shell中执行另外一台机器上的shell


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3