travel/service/vendor/mk-j/php_xlsxwriter/testbench/diff-two.sh

12 lines
252 B
Bash
Raw Normal View History

2024-06-24 11:28:18 +08:00
#!/bin/bash
if [ ! -f "$1" ] || [ ! -f "$2" ]; then
echo "Example Usage: $0 f1.xlsx f2.xlsx";
exit
fi
./extract.sh $1
./extract.sh $2
echo "Now, run this command:"
echo " meld openoffice/ test/";
#export DISPLAY=:0 && meld openoffice/ test/;