5 echo "Rename one file, no overwrite:
6 rn [<OLDNAME>] [<NEWNAME>]
7 Rename 1 or more than 2 files interactively:
8 rn [<FILENAME-1> [<FILENAME-2> [...]]]"
19 if [ ! -e "$2" -o -d "$2" ]
22 # set error status if the first file still exists (rename was not successful)
23 test ! -e "$1" ||
exit 17