Multiple choice technology operating systems

For text file named guest_list containing 12 lines if we execute the following command. What is the result?# split -4 guest_list gl

  1. The lines of guest_list are evenly divided among new files glaa, glab, and glac

  2. The first four columns in the text are written to new files aagl, abgl, acgl, and adgl.

  3. The lines of guest_list are evenly divided among new files aagl, abgl, and acgl.

  4. The first four columns in the text are written to new files glaa, glab, glac, and glad.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The split -4 utility divides the input file into separate chunks of four lines each. For a twelve-line file, this operation produces exactly three files named using the specified prefix gl along with default alphabetical suffixes: glaa, glab, and glac.