given a file test.csv with the content
The commands
qsv foreach b "echo {} test" test.csv
and
qsv foreach b "echo {}/test" test.csv
both result in
echo 1 test
when I would expect something like
echo 1/test
and
echo 1//test
respectively.
- OS: Mac OS 15.5
- qsv Version: 4.0.0
given a file
test.csvwith the contentThe commands
qsv foreach b "echo {} test" test.csvand
qsv foreach b "echo {}/test" test.csvboth result in
echo 1 testwhen I would expect something like
echo 1/testand
echo 1//testrespectively.