You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using sudo -e (e for edit) instead of sudo nano has some benefits: It will use the user's preferences to pick an editor (nano by default on Pi IIRC) but it also copies the file to a temporary location and edits it there and then copies the edited copy back once you exit. This means that spurious saves do not affect the file being edited, and autosaves etc are not saved next to the target file, keeping your config directory clean.
The text was updated successfully, but these errors were encountered:
Using
sudo -e
(e
for edit) instead ofsudo nano
has some benefits: It will use the user's preferences to pick an editor (nano by default on Pi IIRC) but it also copies the file to a temporary location and edits it there and then copies the edited copy back once you exit. This means that spurious saves do not affect the file being edited, and autosaves etc are not saved next to the target file, keeping your config directory clean.The text was updated successfully, but these errors were encountered: