新手学堂:Linux操作系统Shell基础知识

2008-04-02 10:40:41来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

1 cat /etc/shells

查看计算机上可用的shell

2 编写shell,保存为firstscript

#! /bin/bash



# This is a test.



echo -n Your current directory is:



pwd



echo $HOME



echo Your current directory is:



pwd



#END.

3 运行firstscript

$ /bin/bash firstscript

如果找不到文件 使用pwd查看当前目录

$ /bin/bash pwd/firstscript

可见当前运行结果。

4 可以修改firstscript为执行

$chmod a x firstscript

此时输入$ ./firstscript即可

上面的shell没有交换,我们可以进行交互,如下:

#!/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

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

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:命令行中“\”和“--”符号所代表的含义

下一篇:Linux系统设置编译器路径的几种方法介绍