Lunix学习笔记
Shell
Shell脚本,Lunix批命令处理
第一个shell脚本
#!/bin/sh
echo “hello world”
#!是约定标记,指定Shell类型
echo,在窗口输出 hello world
运行
shell脚本另存为test.sh文件,进入当前目录下
chmod +x ./test.sh
shell脚本下cd命令进不了对应文件夹
解决方法
用 . 或者 source 修饰脚本
source test.sh
. ./test.sh
参考:
link