This is a script which you can use to call SJBsheet:
#!/bin/bash # makes a spreadsheet out of a mappingfile # calls "sjbsheet" # output: $1.tab NAME=$1 echo generating spreadsheet $NAME.tab cat $NAME | sjbsheet | sort -k 1,2 >$NAME.tab