confOS/.config/fish/functions/ssh-export.fish
2023-10-08 19:43:22 +02:00

11 lines
271 B
Fish

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