Mercurial > hg > config
view bin/antixls.sh @ 501:f9a4e1572b54
add http://pietrushnic.blogspot.com/2012/02/arbtt-as-productivity-improver-for.html#.Uh_LB5WZi1E
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 29 Aug 2013 15:36:08 -0700 |
parents | f3ab51c79813 |
children | fc81284013bf |
line wrap: on
line source
SSCONVERT=`which ssconvert 2> /dev/null`; if [ -z "${SSCONVERT}" ]; then echo "${SSCONVERT} not found. Please install gnumeric."; return 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