文件操作命令
- ls (list files) :列出目录以及文件名
- cd (change directory) :切换目录
- pwd (print work directory):显示当前的目录
- mkdir(make directory) 创建一个新的目录
- rmdir(remove directory)删除一个空的目录
- cp (copy file) 复制文件或目录
- rm (remove)删除文件或目录
- mv (move file)移动文件与目录,或修改文件与目录的名称
- 可以通过 man [命令] 来查看各个参数的使用文档 例如 man rm
终端
- 查看终端类型
echo $SHELL
- 查看系统安装了哪些shell
cat /etc/shells
- 切换shell ,例如切换到bash
chsh -s /bin/bash
- 配置文件
bash读取的配置文件:~/.bash_profile
zsh读取的配置文件:~/.zshrc
- 设置配置文件
当从bash切换为zsh时,如果不想重新配置一遍.zshrc
文件,可以__在.zshrc
文件中加上source ~/.bash_profile
,从而直接从.bash_profile
文件读取配置。
配置文件踩坑
- 如果在配置
~/.zshrc
或者~/.bash_profile
文件时,导致所有命令都失效了,那么可以键入以下命令临时生效,再去修改配置文件
PATH=/bin:/usr/bin:/usr/local/bin:${PATH}
export PATH
参考文章:
http://c.biancheng.net/view/706.html
http://c.biancheng.net/view/vip_3230.html
https://blog.csdn.net/qq_21033663/article/details/124975639
网友评论