What is the default action of the split command on an input file?
What is the default action of the split command on an input file?
The default action of the split command on an input file is to break the file into new files of 1,000 line pieces each.
The default action of the `split` command on an input file is: B. It will break the file into new files of 1,000 line pieces each. By default, `split` divides the input file into pieces based on the number of lines. Each output file will contain a specified number of lines from the original input file (1,000 lines in this case).