Answers for "split a file bash"

1

split bash string

IN="[email protected];[email protected]"
arrIN=(${IN//;/ })
Posted by: Guest on April-29-2020
0

linux split file by lines

$ split --verbose -l1000 logfile log.
creating file 'log.aa'
creating file 'log.ab'
...
Posted by: Guest on October-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language