Fix bug, add support for directory

This commit is contained in:
Thomas Forgione 2019-04-24 16:03:43 +02:00
parent 68ba5323de
commit b83dde6fcb
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 14 additions and 2 deletions

View File

@ -1,9 +1,21 @@
#!/usr/bin/env zsh
# Swap files
swap() {
if [ $# -ne 2 ]; then
echo -e "\033[1;31merror:\033[0m expected two arguments"
exit 1
fi
if [ -f $1 ] && [ -f $2 ]; then
local tmp=`mktemp`
mv "$1" "$tmp"
mv "$2" "$1"
mv "$tmp" "$2"
}
elif [ -d $1 ] && [ -d $2 ]; then
local tmp=`mktemp -d`
mv "$1" "$tmp"
mv "$2" "$1"
mv "$tmp/$1" "$2"
else
echo -e "\033[1;31merror:\033[0m expected two files or two directories"
fi