# xlsx2csv - An Excel-like spreadsheet to CSV coverter writen in Rust. ``` USAGE: xlsx2csv [FLAGS] [OPTIONS] [output]... FLAGS: -h, --help Prints help information -i, --ignore-case Rgex case insensitivedly -l, --list List sheet names by id -u, --use-sheet-names Use sheet names as output filename prefix (in current dir or --workdir) -V, --version Prints version information OPTIONS: -d, --delimiter Delimiter for output [default: ,] -X, --exclude A regex pattern for matching sheetnames to exclude, used with '-u' -I, --include A regex pattern for matching sheetnames to include, used with '-u' -s, --select Select sheet by name or id in output, only used when output to stdout -w, --workdir Output files location if `--use-sheet-names` setted ARGS: Input Excel-like files, supports: .xls .xlsx .xlsb .xlsm .ods ... Output each sheet to seprated file. If not setted, output first sheet to stdout. ``` ## License [MIT](LICENCE-MIT) OR [Apache-2.0](LICENCE-APACHE)