shell学习(一)

①命名.sh结尾;
例:
touch test.sh
②脚本第一行#!./bin/bash
例:
#This is a test shell demo
#!./bin/bash
A=“kevin”
echo <美元符号>A
③注释
单行注释:出了第一次出现的#!,其余#均为单行注释;
例:
同②中第一行->#This is a test shell demo
多行注释:文首:<<符号,文末符号,此符号可以是EOF也可以是 ! '等
例:
:< This is a demo for testing shell;
author :kevin
data:2020.2.5
reason:test
EOF
④变量:
变量命名:此处略,基本都知道
使用变量:
取变量名:$;
强制指出这是个变量:{};
例:
#This is a test shell demo
#!./bin/bash
A=“kevin”
echo “My name is ${A}lucky!”

你可能感兴趣的:(linux入门)