欢迎分享,转载请注明来源:内存溢出
1>History命令语法: [test@linux]# history [n] [test@linux]# history [-c] [test@linux]# history [-raw] histfiles 参数: n :数字,要列出最近的 n 笔命令列表 -c :将目前的shell中的所有 history 内容全部消除 -shell脚本中判断上一个命令是否执行成功 shell中使用符号“$?”来显示上一条命令执行的返回值,如果为0则代表执行成功,其他表示失败。 结合if-else语句实现判断上一个命令是否执行成功。 示例如下: if [ $? -ne 0 ]then echo "failed" else echo "succeed" fi 或者: if [ $? -eq 0 ]then echo "succeed" else echo "failed" fi
赞
(0)
打赏
微信扫一扫
支付宝扫一扫
linux mysql修改密码命令
上一篇
2023-04-20
华为ec1308H网络机顶盒使用Linux系统可以刷成Android吗
下一篇
2023-04-20
评论列表(0条)