Jun's Blog

Output, activities, memo and etc.

Entries from 2016-03-21 to 1 day

Bash - pushd, popd, dirs

At first, "cd -" may be popular feature for bash's cd. "cd -" make your directory to go back to the previous directory. $ cd /tmp $ cd /etc $ pwd /etc $ cd - /tmp $ pwd /tmp So, how about pushd, popd, dirs? These are bash build-in commands…