Skip to content

Instantly share code, notes, and snippets.

@4skl
Created April 5, 2026 12:55
Show Gist options
  • Select an option

  • Save 4skl/49f00767eafbfd29bab150155615ff17 to your computer and use it in GitHub Desktop.

Select an option

Save 4skl/49f00767eafbfd29bab150155615ff17 to your computer and use it in GitHub Desktop.
Open nautilus (file browser) from the terminal using the "open" command on gnome
# **Previous content**
# To open nautilus (file browser) from the terminal using the "open" command
open() {
# If no argument is provided, default to "." (current directory)
local path="${1:-.}"
# Launch nautilus silently and detach it
setsid nautilus "$path" > /dev/null 2>&1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment