WEB开发网
开发学院软件开发Shell Linux操作系统Shell基础知识 阅读

Linux操作系统Shell基础知识

 2009-06-30 04:04:00 来源:WEB开发网   
核心提示: #!/bin/sh echo -n Please input your ID: read id_var echo -n Please input your password: read password echo User ID = $id_var echo password = $password

   #!/bin/sh

   echo -n Please input your ID:

   read id_var

   echo -n Please input your password:

   read password

   echo User ID = $id_var

   echo password = $password

   if [ $password = "admin" ]; then

   echo "password is right"

   else

   echo "password is wrong"

   fi


   同前面的运行,自己测试。

   ◆命令行中“\”和“--”符号所代表的含义

\ 如果在行末,是说明本行还未结束,下面一行和本行是一起的意思.


   -- 就是选项的开始,一般一个字母的选项用 - 开头,多个字母的就用 -- 开头.


   “\”后如果是回车,不换行的话可能省略;但要是其它字符,就不能省略。


   “\”告诉系统后面跟着的字符为原意,不是命令。


   比如有个文件名中带有空格,就要在空格前加一个“\”。

上一页  1 2 

Tags:Linux 操作系统 Shell

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接