标签:编程 logs mod 解释器 shell命令 程序 计算 shell shell编程
# 颜色打印输出 echo -e "\033[31m hello,world \033[0m"
执行脚本的方式:
1、bash解释执行:
bash hello.sh
2、脚本添加执行权限:
chmod 755 hello.sh # 加上执行权限 source hello.sh # 执行程序
命令的执行顺序:
1、命令路径>>>2、别名>>>3、bash路径下的命令>>>4、环境变量对应的命令
三、查看历史命令:
标签:编程 logs mod 解释器 shell命令 程序 计算 shell shell编程
原文地址:http://www.cnblogs.com/liyu2151/p/7299542.html