1
0
Fork 0
mirror of https://github.com/zdharma-continuum/zinit-configs.git synced 2025-01-31 04:08:16 +01:00
zinit-configs/psprint/functions/exchange

8 lines
223 B
Bash

[[ ! -e "$1" || ! -e "$2" ]] && { print -r -- "The args do not exist"; return 1; }
local suffix=$(( RANDOM % 10000 ))
mv -vf "$1" "$1"_"$suffix"
mv -vf "$2" "$1"
mv -vf "$1"_"$suffix" "$2"
# vim:ft=zsh:et:sts=4:sw=4:wrap