2014-08-06
每天一个linux命令
pwd: 输出当前目录 (Print the name of the current working directory)
pwd -P 显示出实际路径
pwd -L 目录连接链接时,输出连接路径(pwd 默认是pwd -L)
$PWD 当前目录的变量,可以用echo $PWD 输出,结果与pwd一样
$OLDPWD 上一个目录的变量
2014-08-05
cd [目录名] :切换当前目录至dirName (Change the current directory to DIR)
常用命令组合
1. cd / 进入系统根目录
2. cd .. 返回上一级目录
3. cd ~ 或cd 当前用户主目录
(注意:“当前用户主目录”和“系统根目录”是两个不同的概念)
4. cd - 返回进入此目录之前所在的目录
5. cd !$ 执行linux cd !$把上个命令最后的参数作为输入