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

有关目录操作的问题

    来源: 互联网  发布时间:2015-01-26

    本文导语:  小弟写了一段shell代码用于检测目录:   #!/bin/sh #ifmkdir #parameter is passed as $1 but reassigned to DIRECTORY  DIRECTORY=$1 #is the string empty?? if [ "$DIRECTORY" = "" ]; then   echo "Usage:$0 directory to create " >&2 exit 1 fi  if [ -d...

小弟写了一段shell代码用于检测目录:
  #!/bin/sh
#ifmkdir
#parameter is passed as $1 but reassigned to DIRECTORY
 DIRECTORY=$1
#is the string empty??
if [ "$DIRECTORY" = "" ];
then
  echo "Usage:$0 directory to create " >&2
exit 1
fi
 if [ -d $DIRECTORY ];
   then:#do nothing

 else
   echo "The direcotry does exist"
   echo -n "Create it now?[y..n]:"
   read ANS
    if [ "$ANS" = "Y" ] || [ "$ANS" = "Y" ];
    then
     echo "creating now"
     #create directory and send all output to /dev/null
     mkdir $DIRECTORY >/dev/null 2>&1
       if [ $? != 0 ]; then
          echo "ERROR creating the directory $DIRECTORY" >&2
          exit 1
       fi

    else:#do nothing
    fi
fi

可是老是出0403-057 Syntax error at line 15 : `else' is not expected.
这个错误请各位大哥大姐帮忙看看是哪里的错误,谢谢了!

|
主要是then和else后面的格式不对,我给你修改了程序,已经顺利运行。附在后面,供你参考。
#parameter is passed as $1 but reassigned to DIRECTORY
DIRECTORY=$1
#is the string empty??
if [ "$DIRECTORY" = "" ];
then
    echo "Usage:$0 directory to create " >&2
exit 1
fi

if [ -d $DIRECTORY ];
    then
    echo "$DIRECTORY already exist"
    exit 0
else
    echo "The direcotry does not exist"
    echo -n "Create it now?[y..n]:"
    read ANS
    if [ "$ANS" = "y" ] || [ "$ANS" = "Y" ];
    then
        echo "creating now"
        #create directory and send all output to /dev/null
        mkdir $DIRECTORY >/dev/null 2>&1
        if [ $? != 0 ]; then
            echo "ERROR creating the directory $DIRECTORY" >&2
            exit 1
        fi
    else
        echo "exit"
    fi
fi

|

#!/bin/sh
#parameter is passed as $1 but reassigned to DIRECTORY
 DIRECTORY=$1
#is the string empty??

if [ "$DIRECTORY" = "" ]
then
  echo "Usage:$0 directory to create " >&2
exit 1
fi

   echo "The direcotry does exist"
   echo  -n "Create it now?[y..n]:"
   read ANS
    if [ "$ANS" = "y" ] || [ "$ANS" = "Y" ]
    then
     echo "creating now"
     #create directory and send all output to /dev/null
     mkdir $DIRECTORY >/dev/null 2>&1
       if [ $? != 0 ]
        then
          echo "ERROR creating the directory $DIRECTORY" >&2
          exit 1
       fi
    fi

    
 
 

您可能感兴趣的文章:

  • 高分请教:请问怎么才能得到最近所有有关文件操作(新建,删除等)的记录
  • 一个有关磁盘操作的问题
  • 有关微操作??
  • (请来拿分)有关实时操作系统的问题
  • 找一本有关操作系统的书!
  • 有关虚拟机的操作反应速度问题!
  • 请问哪有有关linux/unix操作手册sch的文档下载吗?
  • 有关VMWare,不能启动操作系统! 谢谢!
  • 推荐一些有关linux操作系统的书
  • 要购买大型服务器及操作系统,请介绍有关解决方案,比如sun、ibm、惠普等公司!!!!!
  • 有关《一个操作系统的实现》中文件系统的问题
  • 有关操作系统的几个概念和举例说明
  • 我的jcreator 显示混乱,跟操作系统有关么?大家遇到过么?
  • 我想写一个简单的操作系统,能不能推荐一下有关这方面的书?最好是C语言的
  • 有关双操作系统的启动问题十分危急啊!!!!给100分!!!!
  • 有关操作系统的一些问题
  • 有关文件描述符的操作
  • 请问我以下的操作方法有什么不对?(有关tomcat中类路径的问题)
  • 有关操作系统的几个问题?感谢大家的指点?
  • 有关按位操作符问题?
  • 急问个问题可能与目录权限有关
  • Linux的交换分区与/tmp目录有关系么?
  • (菜鸟问题)有关目录中文件执行的问题???
  • linux 中目录权限的有关问题
  • 有关unix下目录流DIR的问题
  • 有关c#操作目录-文件-字符串的类
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • ​有关Docker的八个令人难以置信的事实
  • 有关内码转换(跟HttpServletRequest有关)
  • 求有关png图像处理的libpng库的有关中文资料
  • 大家推荐一下有关LINUX7有关的网络编程的书。最好是比较全面的!比较经典的。
  • 求教有关smartupload的问题,有关就给分!!
  • 有关KDevelop-3.0.4-0.1.i386.rpm的有关软件包
  • 有关在sco unix5.0.4下有关网卡设置的问题(非常急,高分相送)
  • 有关snmp的一个很菜,但是困扰了我很久的问题,有关工作原理的,望大家赐教
  • 有关KDevelop编程的资料
  • 有关集群与数据同步
  • 请教有关英文简历方面的词句!
  • 有关报表打印(在JAVA,WEB下应用)急用!
  • 请各位大哥告知JAVA中消息机制的有关资料,拜托!
  • 有关cocoon的问题??
  • 有关jbuilder
  • 我想看看有关Linux和Unix的源码,有什么好的建议
  • 有关J2ME的帮助文档!
  • 100分求助 能不能提供一些有关图像分割的算法和实现代码!谢谢
  • 在哪里可以弄到有关tomcat配置方面的资料?
  • Helper! 有关Jbuilder使用问题???
  • 有关swing的问题,请高手回答


  • 站内导航:


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

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

    浙ICP备11055608号-3