文件包含 两种方式
#语法一:
./filename.sh
#语法二:
shource filename.sh
fileA.sh 内容:
#!/bin/bash
echo "me is fileA.sh"
fileB.sh 内容:
#!/bin/bash
./fileA.sh
source fileA.sh
source /Users/root/Desktop/fileC.sh
echo "me is fileB.sh"
url:cat
作用
- 查看文件内容
#语法 cat [选项] [文件]
cat fileA.sh
#-n 显示内容和行号
#-b 和-n类似功能,只标记非空白行
#-e 在每一行后面加入 ‘$’ 符号,在多行转换为一行内容的时候有用
cat -n fileA.sh
- 链接文件
- 创建一个多个文件
- 重定向输出到终端
- 重定向到文件
read
文件内容:
#!/bin/bash
echo "me is fileA.sh"
read name
echo "名字为:${name}"