Linux一切皆文件,配置文件放在etc目录下面,etc配置文件相当于Windows的注册表。-
工作在人机之间
u20@u20:~$ echo $SHELL
/bin/bash
u20@u20:~$ cat /etc/shells
# /etc/shells: valid login shells
/bin/sh
/bin/bash
/usr/bin/bash
/bin/rbash
/usr/bin/rbash
/bin/dash
/usr/bin/dash
/usr/bin/tmux
/usr/bin/screen
ps 相当于Windows中的任务管理器
u20@u20:~$ ps aux | grep bash
u20 3343 0.0 0.2 8268 5300 tty1 S+ 04:34 0:00 -bash
u20 5509 0.0 0.2 8276 5260 pts/0 Ss 05:59 0:00 -bash
u20 6729 0.0 0.0 6300 736 pts/0 S+ 06:46 0:00 grep --color=auto bash
原文:https://www.cnblogs.com/bpzblog/p/12813508.html