cd和pwd
.:
[root@linuxcool ~]# cd /Dir
[root@linuxcool Dir]#
[root@linuxcool ~]# cd $OLDPWD
$OLDPWD是一个在bash shell中使用的环境变量,它用于存储上一个工作目录的路径。这个环境变量可以帮助用户在切换到其他目录后,返回到之前的目录。
例如,如果用户从目录/home/user1切换到/var/www,那么OLDPWD将被设置为/home/user1。如果用户想要返回到/home/user1,他们可以使用cd命令加上OLDPWD,如cd $OLDPWD。
[root@linuxcool Dir]# cd ~
[root@linuxcool ~]#
[root@linuxcool ~]# cd ..
[root@linuxcool ~]# cd ../../ 返回到上两级目录
[root@linuxcool /]#
[root@linuxcool /]# cd -
/root
[root@linuxcool ~]#
pwd
基本概述
[root@linuxcool ~]# pwd
/root