标签:使用 dem skill chm 第一个 用户 一个 hello echo
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
运行
标签:使用 dem skill chm 第一个 用户 一个 hello echo
原文地址:https://www.cnblogs.com/520502-thy/p/11956081.html