I usually use .bak… .old seems so… old.
That’s why you put your config files in a git repository
Sounds like Nixos with extra steps
What do you mean? My NixOS config files are in a git repository
Even the system files like those in /etc ?
Of course there is. Love it.
I use NixOS btw ;)
No. I only set up /etc/fstab and /etc/ssh/sshd_config once and they will never change.
Package manager: This package contains an updated sshd_config file, would you like to replace your existing file with the package maintainer’s updated file?
Me, every time: LOL, no
Shit, thanks for reminding me. I needed to take care of some pacdiff files
Yes. I use a hacky script to copy them to the right place
I do the same thing.
deleted by creator
BAK IN MY DAY 👵👴
Yep I still add .bak to mine
Evolution:
- config.json
- config.json.bak
- config.json.bak.old
- config.json.bak.old2
- config.json.bak.old3.stillworks
- config.json.bak.old3.stillworks.DONTUSETHIS
- config.json_(redownloaded_from_source)
Sigh…
git revert HEAD echo \*.json.\* >> .gitignore git commit
config.conf
config.conf.backup
config.conf.testing
config.conf.old
config.conf.default
config.conf.example- config.json.almost
- config.json.broken
- config.json.shouldwork
deleted by creator
deleted by creator
. . . (sigh…)
True story… happens all the time.
Gmail says sending myfile.zip is not allowed.
Change it to myfile.zip.txt and everything is fine.
It may be due to their processing.
Betterbase64 -w 0 myfile.zip > myfile.zip.txt
If it works though ¯\_(ツ)_/¯
Speaking of which, nowadays KDE hides files with these extensions for some reason
It’s just a playful thing dolphins do 😊.
Rename to .old
Bam file is gone.
??? Confused look.
The heck?
Ctrl + h
Oh there it is!
I never really have hidden files off, so I wasn’t even aware dolphin does this lol
I absolutely despise the idea of “hidden” files. I don’t understand the purpose of not showing them.
It’s useful to hide clutter. It’s easier to look at the file you care about when the
file~
,file.old
,.file.swp
,file#
,file,v
, etc. aren’t in the way.
An old manager of mine’s backup solution was a cronjob that appended .old to every file then made a copy of the most recent one. So he had: file, file.old, file.old.old, file.old.old.old, …
lol 🤣🤣🤣
I’m seeing this on oldsh.itjust.works, feels extra meta
Is there a tool to version your configs? I use chezmoi for my dotfiles but that doesn’t help system configs
Etckeeper
Fuck it. What’s the worst that could happen?
Oh.
.bak is good, ranger even hides files with it
This is what I’ve always used as well
.bkp_YYYYMMDD for me
Ah, yes, I also add dates sometimes, very helpful 👍.
And then wonder “wtf did I change them 🤔”.
Config files need git nowadays.
I like adding a backup function to .profile that can take a file or list of files as an argument and make a copy with a date suffix on the file name, and same date additional backups just add a character like ~ at the end. It’s in version control, but if I’m testing a change it’s just faster to restore the file from a copy in the same place.
i so agree. i have a script that copies all file arguments into the directory
.backups/YYYY-mm-DD-HHMM/
… handy for risky git operations too.
*~
But you should really have a backup system. And often you should have a version control system too.
Use etc-keeper, saves everything in a git repo and integrates with a bunch of package managers. Been using it for decades it feels like now.