Skip to content

Snippets

Snippets allow you to save frequently used shell commands for quick execution.

  1. Go to the Snippets tab
  2. Tap the + button
  3. Fill in snippet details:
    • Name: Friendly name for the snippet
    • Command: The shell command to execute
    • Description: Optional notes
  4. Save the snippet
  1. Open a server
  2. Tap the Snippet button
  3. Select a snippet to execute
  4. View output in the terminal
  • Quick Execute: One-tap command execution
  • Variables: Use server-specific variables
  • Organization: Group related snippets
  • Import/Export: Share snippets between devices
  • Sync: Optional cloud sync
Terminal window
sudo apt update && sudo apt upgrade -y
Terminal window
sudo apt autoremove -y && sudo apt clean
Terminal window
docker system prune -a
Terminal window
journalctl -n 50 -f
  • Use descriptive names for easy identification
  • Add comments for complex commands
  • Test commands before saving as snippets
  • Organize snippets by category or server type