Question: Write a Bourne Shell script called mySplit.sh (which simulates the GNU utility split) to split a large file into multiple smaller files on every n
Write a Bourne Shell script called "mySplit.sh" (which simulates the GNU utility split) to split a large file into multiple smaller files on every n lines. The filename of new file is created by putting an index (starting from 1) after the original filename. When running the shell script, the first argument should be the pathname of the file to be split, the second argument should be the value of n. Note: please do not use 2 existing utility split in your code.
For example, file test (in current working directory) has 150 lines, after running command below, two new files test1 and test2 are generated in current working directory. test1 h test2as the first 100 lines from test, while has the remained 50 lines.
$./mySplit.sh test 100
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
