Files
NixOS/nixos_24.11_cinnamon/config/home/nemo_actions/compare.sh
2025-04-30 20:47:57 +02:00

11 lines
228 B
Bash
Executable File

#!/usr/bin/env bash
savedfile=/var/tmp/compare-save-for-later.$USER
comparator=meld
if [ "$1" == "save" ]; then
shift
echo "$*" > "$savedfile"
elif [ "$1" == "compare" ]; then
shift
"$comparator" "$*" "$(cat $savedfile)"
fi