Return n-th row from a csv-file by batch -
i have csv-file like:
id, col1, col2 1, a, b 2, c, d 3, e, f
so question is: how can second row (for example) using batch-file? need check if went wrong in r import. file way big search line need text editor.
thanks help!
in bash, use sed print line 42
sed -n '42p' myfile.csv
Comments
Post a Comment