标签:ps aux 任务管理 管理 交互 bin class aix macos 系统
主流bash 由Bourne开发的遵循GPL协议的sh的增强版
Linux命令
查看当前使用shell
[root@C8 ~]# echo $SHELL
/bin/bash
查看系统支持的shell
[root@C8 ~]# cat /etc/shells
/bin/sh
/bin/bash
/usr/bin/sh
/usr/bin/bash
查看系统正在运行的bash
[root@C8 ~]# ps aux | grep bash
root 1726 0.0 0.2 26544 5120 pts/0 Ss+ 08:52 0:00 -bash
root 2018 0.0 0.2 26412 5008 pts/1 Ss 10:46 0:00 -bash
root 2150 0.0 0.0 12108 968 pts/1 R+ 11:28 0:00 grep --color=auto bash
ps aux 相当于Windows中的任务管理器
标签:ps aux 任务管理 管理 交互 bin class aix macos 系统
原文地址:https://www.cnblogs.com/bpzblog/p/12609615.html