Content-type: text/html Manpage of slk2csv

slk2csv

Section: Misc. Reference Manual Pages (Oktober 08, 2003)
Updated:
Index Return to Main Contents

 

NAME

slk2csv - converts sylk-files into comma-seperated-value-files  

SYNOPSIS


slk2csv [-h] [-s seperator] file.slk
 

OPTIONS

--help
-h display help
--seperator
-s seperator
 

TIPS

converting all sylk-files in current directory to csv-files (bash-syntax):

    for i in *.slk
      echo "$i => ${i%.*}.csv"
      slk2csv.rb $i > ${i%.*}.csv
    done

or make an alias (bash too):

alias allslk2csv='for i in *.slk; do echo "$i => ${i%.*}.csv";slk2csv.rb $i > ${i%.*}.csv; done'

 

AUTHOR

mathias gumz <gumz at cs.uni-magdeburg.de>


 

Index

NAME
SYNOPSIS
OPTIONS
TIPS
AUTHOR

This document was created by man2html, using the manual pages.
Time: 12:27:22 GMT, October 08, 2003