How to Open a Folder from the Terminal
1 min | March 10, 2025
When working in the terminal, you might want to quickly open a folder in the graphical file explorer. Here’s how you can do that based on your operating system.
Windows (Command Prompt or PowerShell)
To open the current directory in File Explorer, run:
sh1explorer .
To open a specific folder, use:
sh1explorer C:\path\to\folder
macOS (Terminal)
To open the current directory in Finder, run:
sh1open .
To open a specific folder:
sh1open /path/to/folder
Linux (Terminal)
The command depends on your desktop environment.
GNOME (Ubuntu, Debian, Fedora)
sh1xdg-open .
or
sh1nautilus .
KDE (Kubuntu)
sh1dolphin .
XFCE (Xubuntu)
sh1thunar .
To open a specific folder, use:
sh1xdg-open /path/to/folder
Conclusion
Using these commands, you can quickly open folders from the terminal, improving your workflow and efficiency. Choose the command that matches your operating system and desktop environment!