|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
RedHatCentOS等等.学习linux不是逛自由市场,选定版本就要静下心来学习.不要今天换版本明天要升级.这样对你没有好处。
1cat/etc/shells
检察盘算机上可用的shell
2编写shell,保留为firstscript
#!/bin/bash
#Thisisatest.
echo-nYourcurrentdirectoryis:
pwd
echo$HOME
echoYourcurrentdirectoryis:
pwd
#END.
3运转firstscript
$/bin/bashfirstscript
假如找不到文件利用pwd检察以后目次
$/bin/bashpwd/firstscript
可见以后运转了局。
4能够修正firstscript为实行
$chmoda+xfirstscript
此时输出$./firstscript便可
下面的shell没有互换,我们能够举行交互,以下:
#!/bin/sh
echo-nPleaseinputyourID:
readid_var
echo-nPleaseinputyourpassword:
readpassword
echoUserID=$id_var
echopassword=$password
if[$password="admin"];then
echo"passwordisright"
else
echo"passwordiswrong"
fi
同后面的运转,本人测试。
</p>
常常有些朋友在Linux论坛问一些问题,不过,其中大多数的问题都是很基的。 |
|