shell
Posted thy520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell相关的知识,希望对你有一定的参考价值。
shell是用户使用 Linux 的桥梁
1.第一个shell语言
新增一个a.sh文档
内容:
#!/bin/sh
myUrl="hello"
echo $myUrl
运行:chmod +x ./a.sh
./a.sh
2.shell的循环
#!/bin/sh
for skill in Tom THY Marry demo ;do
echo "I am ${skill}"
done
运行
以上是关于shell的主要内容,如果未能解决你的问题,请参考以下文章