Loading
Home ›
Add Bookmarks for Changing Directories in Konsole
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- This is a great program. We
2 hours 47 min ago - No Air for Linux
4 hours 36 min ago - HEWLETT PACKARD created
4 hours 46 min ago - HEWLETT PACKARD created
4 hours 49 min ago - very helpful :)
5 hours 11 min ago - I'll give it a whirl
13 hours 45 min ago - TFPT, don't you mean TFTP!? I
22 hours 13 min ago - wunderbar!!
22 hours 32 min ago - Lubuntu on a USB key
1 day 12 hours ago - Because XFCE is neither fish
2 days 3 hours ago





Comments
Use can also use pushd and
Use can also use pushd and popd, Its not exactly like bookmarks, but quite helpful.
does that work across shells?
does adding a bookmark in Konsole allow another shell to use that bookmark? if so, awesome. I'm using Gnome and I didn't see that dropdown menu in the terminal.
Another alternative for "bookmarks" I recently found useful was combining the commands:
pushd and dirs.
For instance, following your example:
cd /var/log
pushd .
cd ~
# issue dirs -v will show you directores you've pushed down
# should display something like
# 0 ~
# 1 /var/log
dirs -v
# cd back to /var/log or 1 in the dirs list.
cd ~1
Other Shells: Yes, Other Terminals: No
You could use it with another shell (eg csh, ksh, or dash) as long as the shell uses "cd" to change directories, but it won't work in another terminal program, which is what gnome-terminal is (the GNOME Terminal program). This is a Konsole feature, which is "independent" of the shell you're running inside Konsole, and which has nothing to do with the shell or with other terminal programs. Konsole implements this by sending a "cd" command to the shell that is running.
Mitch Frazier is an Associate Editor for Linux Journal.