as title, I made in VIFM a simple command to backup the content of a directory - from the Desktop to an external SSD drive
command! backupOnSSD rsync -av --delete /home/bob/Desktop/personal_data/ /media/bob/SanDisk/personal_data/
The command works fine.
For long backups, can I detach the command so that it runs in a new terminal?
This would allow me to do two things:
1) continue to use VIFM during the backup
2) see the backup result in the new terminal
Does anyone have any ideas?
thanks