pushd   切换到指定路径
popd    回到上次的目录
pushd可以切换到后面指定的路径,顺便累积堆栈目录
堆栈:这里把pushd累积的目录称为堆栈
[root@wing etc]# pushd /etc/sysconfig/network-scripts/
/etc/sysconfig/network-scripts /etc   //这两个目录就是累积的堆栈

再次累积一个堆栈目录/test
[root@wing network-scripts]# pushd /test/
/test /etc/sysconfig/network-scripts /etc

dirs可以查看当前累积的堆栈目录,也可以用dirs -c清空堆栈
[root@wing test]# dirs
/test /etc/sysconfig/network-scripts /etc

每次pushd都会切换到堆栈中排位第2的目录
[root@wing etc]# pushd
/test /etc /etc/sysconfig/network-scripts

可以pushd +1把堆栈目录向前挪一位,顺便进入挪位后排在第一的目录
[root@wing etc]# pushd +1
/etc/sysconfig/network-scripts /test /etc

可以加更多数字挪更多目录:
[root@wing network-scripts]# pushd +2
/etc /etc/sysconfig/network-scripts /test

======================================
popd 回到上一次去过的目录

======================================

popd 和 pushd 命令的实际应用中,在编写 shell 脚本时会派上用场 - 你不需要记住你从哪里来;只要执行一下 popd,你就能回到你来的目录。