%verbose, %v
Set CSV Processing Mode to More Verbose
Description
Normally, when started, csvfox provides a lot of information on the console screen. It will display the file names, the interpreted commands, and will visualize the ongoing processing of CSV rows, any occurring problems, and states the finishing of the process.But you can display even more information with the
You can also combine
Pattern
%verbose %v
Usage Examples
- csvfox infile.csv +d=, -d=; %verbose outfile.csv
- This changes the field delimiter of the input file, which uses a comma, to a semi-colon. More information will be printed on the console and the log file.
- csvfox infile.csv -set[Weight]="[*] kg" %v outfile.csv
- This appends the string " kg" to the field "Weight". More information will be displayed on the console and the log file.
Hint
If the output file name is not given, csvfox assumes that the data output will be targeted to the console instead. This allowsIn this case, there is also no processing information display on the console because this would corrupt the data output. An explicit %verbose command does not change this.