confOS/.config/fish/functions/ssh-export.fish

12 lines
265 B
Fish
Raw Normal View History

2023-10-08 19:41:13 +02:00
function ssh-export
# Save the entry directory
set entry_directory $PWD
# Create the archive
cd $HOME/.ssh
tar cz --exclude='known_hosts*' -X environment -f '$HOME/SSH.tar.gz' *
# Returns to the entry directory
cd $entry_directory
end