admin avatar

查看當前使用的shell的多種方法

🕐 by admin

ps | grep $$ | awk '{print $4}'(實時)

不帶參數的ps命令顯示和當前終端有關的進程狀況 $$變量存儲當前進程的PID ps第四列是進程所使用的命令,如果是Shell,那麼顯示shell名,比如sh/ksh等 awk '{print $4}'就是只顯示第四列的值

PS:用echo $SHELL可以查看系統默認的shell

查看當前發行版可以使用的shell

1
[user@localhost ~]$ cat /etc/shells  /bin/sh /bin/bash /sbin/nologin

查看當前使用的shell 一、最常用的查看shell的命令,但不能實時反映當前shell

1
[demo@localhost ~]$ echo $SHELL /bin/bash

二、下面這個用法並不是所有shell都支持

1
[demo@localhost ~]$ echo $0 bash

三、環境變量中shell的匹配查找

1
[demo@localhost ~]$ env | grep SHELL SHELL=/bin/bash

四、口令文件中shell的匹配查找

1
[demo@localhost ~]$ cat /etc/passwd | grep demo demo:x:500:500:mengfei:/home/demo:/bin/bash

五、查看當前進程

1
[demo@localhost ~]$ ps PID TTY TIME CMD 3052 pts/0 00:00:00 bash 3254 pts/0 00:00:00 ps

六、先查看當前shell的pid,再定位到此shell進程

1
[demo@localhost ~]$ echo $$ 3052 [demo@localhost ~]$ ps -ef | grep 3052 demo 3052 3047 0 11:33 pts/0 00:00:00 bash demo 3420 3052 0 11:57 pts/0 00:00:00 ps -ef demo 3421 3052 0 11:57 pts/0 00:00:00 grep 3052

附:一條命令即可實現:

1
[demo@localhost ~]$ ps -ef | grep `echo $$` | grep -v grep | grep -v ps demo 3052 3047 0 11:33 pts/0 00:00:00 bash

七、輸入一條不存的命令,查看出錯的shell提示

1
[demo@localhost ~]$ tom bash: tom: command not found

💘 相关文章

写一条评论