Mercurial > hg > config
view bin/antixls.sh @ 807:26786fae0703
this relies on a requirement that is not part of my (2.7.12) stdlib; i almost deleted it. instead, i will keep for fun and note the requirement for further research
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Fri, 28 Oct 2016 17:09:04 -0700 |
parents | e4d0f89d4ddc |
children |
line wrap: on
line source
#!/bin/bash SSCONVERT=`which ssconvert 2> /dev/null`; if [ -z "${SSCONVERT}" ]; then echo "ssconvert not found. Please install gnumeric."; exit 1 fi; for i in "$@"; do OUTPUT=${i%.xls}.txt; ${SSCONVERT} -I Gnumeric_Excel:excel -T Gnumeric_stf:stf_csv "$i" "$OUTPUT" 2>/dev/null; cat "$OUTPUT"; done