码迷,mamicode.com
首页 > 系统相关 > 详细

bash和shell的差别

时间:2020-10-09 20:46:19      阅读:32      评论:0      收藏:0      [点我收藏+]

标签:bash   shel   执行   linux   参数   空格   需要   lin   功能   

bash和shell是linux下的不同程序,大体功能是一样的,但是命令的解释上(语句的执行)有细微的差别。

已知的不同如下

  1. if-then语句
    bash
if [ "A" == "B" ]; then

shell,];后不能有空格

if [ "A" == "B" ];then
  1. bash输出彩色字符,必须-e,sh不需要-e参数

bash和shell的差别

标签:bash   shel   执行   linux   参数   空格   需要   lin   功能   

原文地址:https://www.cnblogs.com/jiftle/p/13783423.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!