查看當前使用的shell

來源:互聯網
上載者:User

標籤:style   blog   http   os   使用   sp   strong   on   檔案   

ps |  grep $$  |  awk ‘{print $4}‘  

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


PS:用echo $SHELL可以查看系統預設的shell

 

查看當前發行版可以使用的shell
[[email protected] ~]$ cat /etc/shells 
/bin/sh
/bin/bash
/sbin/nologin

查看當前使用的shell
一、最常用的查看shell的命令,但不能即時反映當前shell
[[email protected] ~]$ echo $SHELL
/bin/bash

二、下面這個用法並不是所有shell都支援
[[email protected] ~]$ echo $0
bash

三、環境變數中shell的匹配尋找
[[email protected] ~]$ env | grep SHELL
SHELL=/bin/bash

四、口令檔案中shell的匹配尋找
[[email protected] ~]$ cat /etc/passwd | grep jack
jack:x:500:500:mengfei:/home/jack:/bin/bash

五、查看當前進程
[[email protected] ~]$ ps
PID TTY          TIME CMD
3052 pts/0    00:00:00 bash
3254 pts/0    00:00:00 ps

六、先查看當前shell的pid,再定位到此shell進程
[[email protected] ~]$ echo $$
3052
[[email protected] ~]$ ps -ef | grep 3052
jack        3052 3047 0 11:33 pts/0    00:00:00 bash
jack        3420 3052 0 11:57 pts/0    00:00:00 ps -ef
jack        3421 3052 0 11:57 pts/0    00:00:00 grep 3052

附:一條命令即可實現:
[[email protected] ~]$ ps -ef | grep `echo $$` | grep -v grep | grep -v ps
jack        3052 3047 0 11:33 pts/0    00:00:00 bash


七、輸入一條不存的命令,查看出錯的shell提示
[[email protected] ~]$ tom
bash: tom: command not found

 

原帖:http://rickie622.blog.163.com/blog/static/212388112011213407503/

查看當前使用的shell

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.