Post #1336604
2025-12-16 22:28 UTC
Replies (4)
-
@ArcaneSlime@lemmy.dbzer0.com 2026-01-11 03:51
Is there a version of $_ that works with mv? It just keeps renaming my files to “filedir,” I’m trying sort through a directory and move some files to another for keeping, be easier if I could do: mv picture1.jpg /path/to/keepdirectory then do something like mv picture2.jpg $_ And so on. But with that I’d just be renaming all my photos “filedir” instead of moving them lol.
-
@LeFantome@programming.dev 2025-12-17 03:54
I really hope I remember this one long enough to make it a habit
-
@hades@feddit.uk 2025-12-17 09:49
I just press M-.
-
@wlfrn@lemmy.ml 2025-12-17 13:18
For interactive editing, the keybind alt+. inserts the last argument from the previous command. Using this instead of $_ has the potential to make your shell history a little more explicit. (vim $_ isn’t as likely to work a few commands later, but vim actual_file.sh might)