很多人都想知道本機的Linux系統使用的是哪種shell,下面小編就教你如何查看Linux系統中使用的shell的方法,一起來了解下吧。
查看當前發行版可以使用的shell
代碼如下:
[root@localhost ~]$ cat /etc/shells
/bin/sh
/bin/bash
/sbin/nologin
查看當前使用的shell方法
一、最常用的查看shell的命令,但不能實時反映當前shell
代碼如下:
[root@localhost ~]$ echo $SHELL
/bin/bash
二、下面這個用法並不是所有shell都支持
代碼如下:
[root@localhost ~]$ echo $0
-bash
三、環境變量中shell的匹配查找
代碼代碼如下:
[root@localhost ~]$ env | grep SHELL
SHELL=/bin/bash
四、口令文件中shell的匹配查找
代碼如下:
[root@localhost ~]$ cat /etc/passwd | grep root
root:x:0:0:root:/root:/bin/bash
五、查看當前進程
代碼如下:
[root@localhost ~]$ ps
PID TTY TIME CMD
3052 pts/0 00:00:00 bash
3254 pts/0 00:00:00 ps
六、先查看當前shell的pid,再定位到此shell進程
代碼如下:
[root@localhost ~]$ echo $$
1862
[root@localhost ~]$ ps -ef | grep 1862
root 1862 1860 0 01:50 pts/0 00:00:00 -bash
root 2029 1862 0 02:07 pts/0 00:00:00 ps -ef
root 2030 1862 0 02:07 pts/0 00:00:00 grep 1862
七、輸入一條不存的命令,查看出錯的shell提示
代碼如下:
[root@localhost ~]$ asdf
bash: asdf: command not found
附:一條命令即可實現:
代碼如下:
[root@localhost ~]$ ps -ef | grep `echo $$` | grep -v grep | grep -v ps
root 1862 1860 0 01:50 pts/0 00:00:00 -bash
上面就是Linux下查看使用的是哪種shell的方法的介紹了,如果你不知道你的電腦使用的是哪種shell,不妨試試上面介紹的方法吧。