首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
shell_02
】的更多相关文章
shell_02
if判断: if [$? -eq 0];then echo "xxxxxxxxxxx" else echo "xxxxxxxxxxxxx" fi case判断: case $name in xxx) echo "xxxxxxx" xxx) echo "xxxxxx" esac for循环: for i in $(seq 1-3) do echo "xxxx" done while循环: i=1 while(…
Linux从入门到进阶全集——【第十四集:Shell基础命令】
1,Shell就是命令行执行器 2,作用:将外层引用程序的例如ls ll等命令进行解释成01表示的二进制代码给内核,从而让硬件执行:硬件的执行结果返回给shell,shell解释成我们能看得懂的代码返回给我们. 3,查看linux支持的shell:vim /etc/shells 4,echo命令 作用:打印字符串:echo "abc" 回车后输出abc. -e:输出转义字符,例如:echo -e "abc\bd" ==>输出abd ==&g…