The Magazine
Linux Journal is the premier source for how-tos, projects, product reviews, expert advice and opinions for everything Linux.
| We're Linux, Again | Feb 09, 2010 |
| Quick Compiz Screenshots | Feb 09, 2010 |
| Welcome to the New LinuxJournal.com | Feb 09, 2010 |
| Symbian Opens Up | Feb 04, 2010 |
| The Small Picture: More OpenOffice.org Extensions | Feb 04, 2010 |
| Pass the Bug, Collect $500 | Feb 02, 2010 |
This Week's Member Giveaway
This week 5 lucky Members will receive a copy of The Official Ubuntu Server Book by Benjamin Mako Hill and Linux Journal's very own Kyle Rankin. No entry necessary. Check back here early next week to find out who the lucky Online Members are.














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 and the Web Editor for linuxjournal.com.
Post new comment