this post was submitted on 08 Sep 2026
83 points (100.0% liked)

Ask Lemmy

41331 readers
1590 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, toxicity and dog-whistling are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !uspolitics@lemmy.world


7) No Hit-and-Run questions.
Please don't delete your post for no apparent reason. If you plan on deleting a question later, say so in the post, or if you feel that you have a good reason to remove it, message a mod beforehand. It's not fair to the ones who took their time to answer, and it's not in the spirit of the community.


8) No Bots.
Posts or comments from bots, LLM's, AIs, Neural Networks, Transformers, or Marvin the Paranoid Android are not welcome in AskLemmy. Real humans only please.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 3 years ago
MODERATORS
 

Maybe there is a tool that does that? Maybe I'm doing this all wrong and there is a different way I should browse?

top 48 comments
sorted by: hot top controversial new old
[–] UnfortunateShort@lemmy.world 15 points 7 hours ago

You can hit TAB in any decent shell to autocomplete paths. Personally I highly recommend fish

[–] ccunning@lemmy.world 68 points 10 hours ago (4 children)

You mean something like this?
ls /your/long/path/name
cd !$

[–] Openopenopenopen@lemmy.world 3 points 3 hours ago* (last edited 3 hours ago)

I think, if your using bash

alt + .

Does the same thing as typing

!$

ls /super/long/path/to/dir

cd alt + .

I believe if you hit it again, it cycles through all previous last words

https://ostechnix.com/list-useful-bash-keyboard-shortcuts/

[–] valar@lemmy.ca 70 points 10 hours ago* (last edited 10 hours ago) (7 children)

To add,

!$ gets replaced with the last word from the previous command line

!! Repeats the most recent command

!-N Repeats the Nth previous command

!string Repeats the most recent command that began with 'string'

[–] 4am@lemmy.zip 9 points 5 hours ago (1 children)

If !$ isn’t pronounced “ba-ching!” I’m quitting Linux

[–] daychilde@lemmy.world 3 points 4 hours ago

Better than "bang-ching" which sounds racist to me. lol

[–] klymilark@herbicide.fallcounty.omg.lol 7 points 6 hours ago (1 children)

... How have I used Linux for two decades and not run into this once. Amazing stuff

[–] GreyEyedGhost@piefed.ca 3 points 4 hours ago

I've never come across this before, and I am completely unsurprised it exists.

[–] Exec@pawb.social 11 points 7 hours ago (1 children)

!!:n where n is the nth word after the command in your last line

cp file1 file2
nano !!:2

Here nano opens file2.

[–] valar@lemmy.ca 1 points 7 hours ago
[–] village604@adultswim.fan 30 points 10 hours ago (1 children)

I just learned more about Linux than I did from my whole IT degree.

[–] 4am@lemmy.zip 7 points 5 hours ago* (last edited 5 hours ago) (1 children)

You learned more about shells than you knew. This stuff works on BSD and some UNIX systems too, you know

[–] GreyEyedGhost@piefed.ca 1 points 4 hours ago

Most POSIX-compliant systems?

[–] mp3@lemmy.ca 24 points 10 hours ago (2 children)

!! is the goat when you needed to run the last command using sudo

[–] Hal@piefed.nz 3 points 5 hours ago

Hot damn, and here's me thinking thefuck was the way to do this.

[–] ccunning@lemmy.world 8 points 10 hours ago
[–] abbadon420@sh.itjust.works 4 points 9 hours ago

I'm loving this

[–] ccunning@lemmy.world 2 points 10 hours ago

Huh - TIL about !-N

Thanks 🙏

[–] Raja@lemmy.world 2 points 9 hours ago

In some shells (e.g. fish), "running" a directory changes to it so you can save keystrokes and just delete the "ls ".

[–] quarrel4you@piefed.social 2 points 10 hours ago

I like the way you think! Too bad a I replied to a seaming empty post some 26 min after you. I always disliked this about Reddit. Seeing someone rewording the top reply for karma.

[–] DummyWOW@lemmy.zip 2 points 4 hours ago

Bookmarking this whole thread

[–] gole@lemmy.zip 6 points 7 hours ago

For me I replaced cd with https://github.com/ajeetdsouza/zoxide

cd to anywhere from anywhere, don't even need to type the whole thing. Algorithm: https://github.com/ajeetdsouza/zoxide/wiki/Algorithm#matching

[–] HubertManne@piefed.social 21 points 10 hours ago (1 children)

so you have better answers but still going to do mine. up arrow and change ls to cd.

[–] abbadon420@sh.itjust.works 7 points 9 hours ago (1 children)

Yeah, thats what I was doing,but I was hoping for something more elegant haha

[–] usernameunnecessary@lemmy.zip 6 points 9 hours ago* (last edited 9 hours ago)
^ls^cd

will do exactly what you want, replace ls with cd from the previously run command

[–] Noctambulist@lemmy.world 7 points 8 hours ago

The way I solve this problem is to use nnn instead of ls. It's a full file manager for the terminal but so light and quickly started that it's as convenient as ls (a lot more so actually). You can navigate around your file system with vim-like key bindings and then have the option to exit either to the directory you started from or the one currently displayed.

[–] quarrel4you@piefed.social 17 points 10 hours ago

You may want to learn about the shell's "history expantion" functions. as an example:

~$ ls ~/Documents/taxes/tax_year_2012/2012-12-01.txt  
/home/tom/Documents/taxes/tax_year_2012/2012-12-01.txt  

~$ cd !!$:h  
cd ~/Documents/taxes/tax_year_2012  

~/Documents/tax_2012$ pwd  
/home/tom/Documents/taxes/tax_year_2012  

Here the string "!!$:h" is basically the last command's [ !! ] last argument [$], stripped of its last path component [:h].

[–] notabot@piefed.social 14 points 9 hours ago (1 children)

Type cd then press Alt+. and it'll copy the last argument of the previous command, make sure it's what you want, and press Enter.

[–] sin_free_for_00_days@sopuli.xyz 2 points 4 hours ago (1 children)

Nice, I don't remember having seen that before. I'm sure I'll just keep using !$, because muscle memory, but I like seeing new approaches.

[–] notabot@piefed.social 1 points 45 minutes ago

The shell, and lots of other things that take per-line input, use readline to do it. The readline man page is... extensive... to say the least. There are many more useful shortcuts in there, but I doubt anyone uses more than a fraction of them.

[–] NeatNit@discuss.tchncs.de 9 points 9 hours ago* (last edited 9 hours ago) (2 children)

What I do is: Up, Home, type cd , Delete (hold/repeat as many times as needed), Enter.

The Home key instantly brings your cursor to the start of the command line (before the ls), even if the command is long enough to wrap.

I'm not a terminal guru, and I don't aspire to become one. I don't want to memorize arcane symbols that each has a subtly different meaning, and I especially don't want to execute them before I see explicitly what they're going to do. So while the top comment of cd !$ is a perfectly good and correct answer, I offer this alternative in case you, like me, like to see what you're doing as you do it. Home and End are pretty good.

[–] charokol@lemmy.zip 5 points 7 hours ago

The seconds I’d save remembering which combination of dollar signs and exclamation points to use would never help me find a better job or otherwise improve my life. I’m okay with the up arrow too.

[–] abbadon420@sh.itjust.works 5 points 9 hours ago (2 children)

I had already found ctrl+a that brings me back to the front of the line. It's bit more convenient for my hands than home.

[–] NeatNit@discuss.tchncs.de 5 points 9 hours ago (1 children)

I have a really strong muscle memory for Home so it's super convenient to me, but ctrl+a sounds just as good.

[–] Zarobi@aussie.zone 2 points 6 hours ago

Minor addition: I've had some shells where home will bring you back to the beginning of the current line, not the whole command. Ctrl+Home always brings you to the very start of the command if this applies to you

[–] andyburke@fedia.io 3 points 9 hours ago

ctrl-a: beginning of line ctrl-e: end of line ctrl-k: delete rest of line from cursor ctrl-u: delete line before cursor

these are helpful in these situations, as well.

[–] usernameunnecessary@lemmy.zip 4 points 9 hours ago

In addition to

^ls^cd

I mentioned in another comment, I highly recommend you try "z", installable on macos via "brew install z" (not sure if it's available on linux package managers). Suppose you want to jump to ~/Desktop/project1/foo, you can just type "z foo". It works without a full path, from anywhere, as long as you cd'd in there at least once.

[–] Steve@startrek.website 3 points 8 hours ago (1 children)

Is it uncool to use a GUI?

[–] daychilde@lemmy.world 2 points 4 hours ago

Use what you like.

I'm not OP, but I use SSH a lot, meaning I'm very much in a character-based terminal of some sort. :)

[–] tal@lemmy.today 5 points 10 hours ago (1 children)

If you're using bash and haven't modified the readline default, which is to use emacs keystrokes:

$ ls foo/bar/baz

Just what I wanted!

Control-P Control-A Alt-D cd Enter

[–] BonkTheAnnoyed@piefed.blahaj.zone 3 points 10 hours ago (1 children)

absolutely brilliant

You know, I always kind of wondered what happened when I accidentally pressed control C, control V or whatnot in bash.

Level unlocked

[–] tal@lemmy.today 1 points 9 hours ago

Well...Control-C is treated by bash differently than in emacs. It basically cancels the existing line and gives you a fresh line.

And IIRC, Control-V is also different, used to input literal control characters. Like, the terminal will handle that if it's in cooked mode.

checks

$ od -x

hits Control-V Control-C Enter Control-D

^C

0000000 0a03
0000002
$

Yeah.

Control-U is also a notable difference I know off-the-cuff. In emacs, it's the universal-argument prefix, which is an important way to pass arguments to functions. In readline, it's kill-to-beginning-of-line.

[–] palordrolap@fedia.io 3 points 9 hours ago (1 children)

The soft option perspective (I see plenty of command-line-only solutions here already):

These days, if I'm doing any major navigation, I do it the uncool way and use the GUI file manager bundled with my distro. I have the option enabled to show the "open a terminal at this location" button if I really want to start issuing commands.

If you'd rather stay on the command line, a compromise might be to use something like Midnight Commander. Back in my DOS days I used to use an equivalent there on a regular basis, but that's because I hadn't launched Windows and didn't feel like it was necessary to do what I wanted. (It was possible to patch Win 9x to behave like earlier Win 3.x so that it stopped at the DOS prompt and didn't load Windows, which fit my aesthetic at the time.)

These days I prefer my comforts and I sure as heck don't boot Linux to a command line unless something's really wrong!

[–] tal@lemmy.today 1 points 9 hours ago* (last edited 9 hours ago)

If you'd rather stay on the command line, a compromise might be to use something like Midnight Commander. Back in my DOS days I used to use an equivalent there on a regular basis, but that's because I hadn't launched Windows and didn't feel like it was necessary to do what I wanted.

Note that this class of file managers (two-pane, Norton Commander-alike) are called "orthodox file managers".

https://en.wikipedia.org/wiki/Category:Orthodox_file_managers

https://softpanorama.org/OFM/index.shtml

My experience is that people out of Eastern Europe in particular seem to have a history of using these.

There are also some non-OFM console file managers, like ranger, which might appeal to vim-folk:

https://github.com/ranger/ranger

Ranger is a console file manager with VI key bindings. It provides a minimalistic and nice curses interface with a view on the directory hierarchy.

I use dired in emacs, which does a number of things similarly to an OFM if you have two panes open (though dired is not itself an OFM, and emacs does have Sunrise Commander, which is an OFM).

Generally, I live in bash, but I find that file managers are handy when you want to manually mark a set of files to run an operation on (like, you can't programmatically identify them).

[–] scrion@lemmy.world 3 points 10 hours ago* (last edited 10 hours ago)
  1. You could start by typing cd and use tab completion to explore your target folder(s). This would require at least a rudimentary knowledge of what you're looking for so you can prefix your search

  2. If you really want to explore the contents and pick your target without knowing anything in advance, cd "$(find . -type d | fzf)" would give you a smart browser. You can of course replace '.' with any base directory you like. Requires fzf.

  3. In general, zoxide can help with navigation.

  4. If you want to stay a purist, I'd go for simply recalling your last ls command from the history and replacing it with cd. An example has been given in the thread already.

[–] luthis@lemmy.nz 3 points 10 hours ago (1 children)
[–] LifeInMultipleChoice@lemmy.dbzer0.com 3 points 10 hours ago (1 children)

The way they had it worded I figured they meant they wanted to go ls /mnt/drive/backups/2017/03/19/documents/taxes/w2s

Then type cd !$ so they don't have to type all of that again instead of copy/pasting or pressing the up key and then holding the left button to get back and delete the ls.

[–] tgxn@lemmy.tgxn.net 2 points 6 hours ago

You guys dont have Home buttons? No holding left for me.