Last active
June 22, 2025 01:24
-
-
Save danilogco/1d14fc344848411bde2fbcfc8e78f98d to your computer and use it in GitHub Desktop.
Nano extensios > Linux Mint/Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
NANORC="$HOME/.nanorc" | |
# Reseta o arquivo | |
> "$NANORC" | |
# Inclui a pasta principal (assumindo que sempre existe) | |
echo 'include "/usr/share/nano/*.nanorc"' >> "$NANORC" | |
# Inclui se existir | |
if [ -d "/usr/share/nano/extra" ]; then | |
echo 'include "/usr/share/nano/extra/*.nanorc"' >> "$NANORC" | |
fi | |
if [ -d "/usr/share/nano/debian" ]; then | |
echo 'include "/usr/share/nano/debian/*.nanorc"' >> "$NANORC" | |
fi | |
echo "Arquivo $NANORC resetado com includes existentes." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment