I’ve just started my Linux journey earlier this year. As a goal to learn how to self-host applications and services that will allow me to take back some control of my data. Immich instead of Google Photos, for example.

I have a local server running Unraid and 22 docker containers now. And then a VPS (Ubuntu 20.04 LTS) running two apps. I’ve learned a ton but one thing I can’t seem to wrap my brain around is navigation through the file structure using only terminal. My crutch has been to open a SFTP session in Cyberduck to the same device I’m SSH’d to and try to figure things out that way. I know enough to change directories, make directories, using Tree to show the file structure at different levels of depth. But I feel like I’m missing some efficient way to find my way to files and folders I need to get to. Or are y’all just memorizing it and know where everything is by now?

I come from a Windows background and even then I sometimes catch myself checking via explorer where a directory is instead of using CMD or PowerShell to find it.

I’d love to hear any tips or tricks!

EDIT: I’ve been using Termius because they have a great Android client, but I wasn’t about to pay $5/mo for sync. Especially to sync to someone else’s cloud. Which led me to Tabby, which I understand has quite a large footprint resource-wise. But I guess I either don’t know enough yet to be mad about it or it hasn’t impacted any of my systems negatively yet. No Android client though, but you can bring your own sync solution and it has a handy little shortcut to SFTP to the current directory you’re in. Between that and stuff like ranger, it’s made it so much easier to learn my way around!

71 points

I think it’s just a matter of getting used to it. I had the same issue at first and the more I used the command line, the more I started to prefer it to GUI apps for certain tasks.

A couple things that I use all the time:

  • tab completion is incredible
  • cd - goes back to the last directory you were in (useful for bouncing back and forth between locations)
  • !$ means the last argument. So if you ls ~/Downloads and then decide you want to go there, you can cd !$.
  • :h removes the last piece of a path. So I can do vim /etc/network/interfaces and then cd !$:h will take me to /etc/network.
permalink
report
reply
13 points

Besides using !$, alt+. on bash copies the last argument into the line you are typing, which might be better if you want to edit it.

permalink
report
parent
reply
5 points

I’ve used the cd - several times, it is very handy. the others are new to me so I’ll check it out.

permalink
report
parent
reply
0 points

I might be wrong here, but “cd” without any arguments works as “cd -” for me.

permalink
report
parent
reply
7 points

cd without arguments takes you to $HOME, so it’s the same as cd ~

permalink
report
parent
reply
2 points

interesting, that’s equivalent to cd ~ for me

permalink
report
parent
reply
3 points

!$ means the last argument. So if you ls ~/Downloads and then decide you want to go there, you can cd !$.

Nice, I usually do !!:n. This is a lot better.

permalink
report
parent
reply
1 point

Nothing like extremely cryptic shell scripts

permalink
report
parent
reply
2 points

I don’t use it in scripts, only when typing.

permalink
report
parent
reply
3 points
Deleted by creator
permalink
report
parent
reply
1 point

Fascinating—I didn’t know that one! I’m definitely going to have to read the manual for that.

permalink
report
parent
reply
1 point
*
Deleted by creator
permalink
report
parent
reply
1 point

Not sure if you just misread the commands or not, but that’s a pretty different usecase than what they’re describing.

permalink
report
parent
reply
54 points

You’re pressing the tab key for auto completion right?

permalink
report
reply
12 points

Um…no. I’ll admit I didn’t know that was an option. Weirdly I do it all the time in PowerShell. Though I am using Termius right now and at least on Android it doesn’t support tab auto complete. That said, it does auto suggest as you type to get you in the ballpark. I’ll have to try it again from my PC once I get my office put back together.

permalink
report
parent
reply
7 points

Also make use of the up arrow on your keyboard, with which you can quickly reuse commands you have ran recently.
For example you search for a directory with ls -alh in multiple steps, and when you have found the one you actually want to work in, then you once again press up, and either edit the command from ls to cd to switch to it, or just edit it to your favorite text editors command and put the file name at the end of the path. Tab helps with that too.
Tab completion is done by the shell, not by the command you want to use, though worth mentioning that some tools install tab completion helpers your shell makes use of automatically.

permalink
report
parent
reply
2 points

It does not work on all terminal but you can also your the beginning of a command then the up key. It will show you only the previous command that start the same way.

permalink
report
parent
reply
1 point

I have been doing that, useful on Windows as well and I do that mess for my job now.

permalink
report
parent
reply
5 points

I use Termius on iOS and double tapping the screen sends a tab (I may have enabled it in settings but I don’t think so). I think you can also put a button for it above the keyboard. In any case it does work for tab completion. I know I’m on iOS and not Android but I’d be really surprised if the Android version had no way to send a tab…

permalink
report
parent
reply
2 points

You are correct, I just tried it. I have a keyboard on my Galaxy Tab S7+ and it will recognize the Tab key in normal text entry fields but doesn’t seem to work in Termius. The double tap is pretty clutch!

permalink
report
parent
reply
3 points

Oh and then there’s ncdu too with which your can navigate your fs, but that won’t allow you to open files, it is for finding what takes a lot of space.
The vim text editor can also let you browse directories and open files in them, when you pass a folder’s path to it. But that may be an extension now that I think about it… maybe tpope’s plugin loader does it? But maybe it isn’t so it’s easiest to just try it out

permalink
report
parent
reply
2 points
*
Deleted by creator
permalink
report
parent
reply
1 point
Deleted by creator
permalink
report
parent
reply
26 points
*
Deleted by creator
permalink
report
reply
8 points

Why use a separate command when “cd -“ works just fine to take you to the previous directory

permalink
report
parent
reply
10 points
cd a
cd b
cd c
popd
popd
// you're now in "a"
cd a
cd b
cd c
cd -
cd -
// you're now in "c" and need to manually cd to "a"
permalink
report
parent
reply
3 points

You mean

cd a
pushd b
pushed c
popd
popd

Right ?

Depending on your shell, pushd/popd might not be an option. For a similar functionality, I like to use a subshell which is portable across all shells:

cd a
$SHELL
cd b
cd c
# do work here
^D
# you're back in "a"
permalink
report
parent
reply
1 point

Neat, thanks

permalink
report
parent
reply
2 points
*
Deleted by creator
permalink
report
parent
reply
21 points

I am old and I like ‘mc’ (Midnight Commander) a lot when doing many/complex file operations

permalink
report
reply
5 points

Reminder that mc has the ability to make directory bookmarks (Ctrl + /).

permalink
report
parent
reply
4 points

Same, as I used Norton Commander under DOS, good memory!

permalink
report
parent
reply
21 points

Others have mentioned using interactive tools like zoxide to easily get to frequently visited directories.

In addition, I also use nnn (https://github.com/jarun/nnn), which is a terminal file manager that you can navigate through. You can create shortcuts, snippets and bookmarks with this. I use this and zoxide + fzf regularly on CLI to navigate.

Some here also mention ranger, which is another terminal file manager. In my limited experience with ranger, I feel like the start up time is much slower than nnn; but I haven’t tried much. Tho with ranger + graphic-accelerated terminals like kitty, I believe you can preview images and files, which seems to be a great feature. So it depends on your need.

permalink
report
reply

Linux

!linux@lemmy.ml

Create post

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

  • Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
  • No misinformation
  • No NSFW content
  • No hate speech, bigotry, etc

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

Community stats

  • 6.8K

    Monthly active users

  • 6.6K

    Posts

  • 180K

    Comments