My blog for documenting computery problems after I figure them out. I try to include my problem solving steps, especially if I had to learn things for them too.
Tuesday, 19 March 2024
Backup a folder as a gzipped tar file over the network
tar zcvf - <my_backup_folder> | ssh <destination_host> "cat > /<path_on_destination>/my_backup.tgz"
No comments:
Post a Comment