Using the Xgraph data plotting tool (XGRAPH), I want to plot a bunch of files named test1.csv test2.csv, ...
The command would be
xgraph -columns 1 2 test1.csv -columns 1 2 test2.csv
and so on·
Is there any way I can use brace expansion or some other magic to circumvent manually typing the pattern -columns 1 2 file.csv
again and again?