shell
记录shell学习笔记
QuickStart
hello.sh
#注释内容
#!/bin/bash
#author:sugar
#time:2019-12-24 16:00:00
#description:this is the first shell
echo "hello world"赋予执行权限
chmod u+x hello.sh执行
./hello.sh输出
hello worldLast updated
Was this helpful?
记录shell学习笔记
hello.sh
#注释内容
#!/bin/bash
#author:sugar
#time:2019-12-24 16:00:00
#description:this is the first shell
echo "hello world"赋予执行权限
chmod u+x hello.sh执行
./hello.sh输出
hello worldLast updated
Was this helpful?