Where do files ending with a ~ come from?

5,916

Solution 1

If you're using gedit to edit existing files, the default preference is to "Create a backup of files before saving". If you would like to change this default behavior, open gedit, then go up to the Menu bar and select Edit --> Preferences. Click on the Editor Tab, and Uncheck the box under File Saving in order to turn it off.

enter image description here

Another common ~ file creator is emacs - some would argue it's even more popular/common than gedit.

Solution 2

They are back up files , automatically generated as you say. Several applications use this format. Usually .swp files are made when the file is actually open for editing, and any automatic backup saved to file~

touch file

ls | grep file
file

nano -B file 
# make a change to file, save changes

ls | grep file
file
file~

I am not sure about kate, but unless you are using another editor, I presume it is automatic backups (every 10 minutes ? ) from kate.

Solution 3

Kate generates them too. You can turn them off or configure them differently in Settings > Configure Kate > Editor Component > Open/Save > Advanced.

kate backup file config

Share:
5,916

Related videos on Youtube

Aufwind
Author by

Aufwind

Updated on September 18, 2022

Comments

  • Aufwind
    Aufwind over 1 year

    Sometimes duplicate filenames occur while working on Ubuntu which differ only by a ~ from the original filenames.

    I know kate generates backup files and calls them your_file.py.swp. Is this something similar? If yes which program generates them? And why don't they disappear?

  • BenKoshy
    BenKoshy over 8 years
    wow. i always wondered about that. just turned gedit off because it was causing confusion when using git