the command
FIRST_TEN_ARCHIVE = head -2 config/old_ls_out
# config/old_ls_out is a file
gives me the output ...
drwxr-xr-x 2 areza staff 96 Feb 25 13:56 config
-rwxr-xr-x 1 areza staff 1458 Feb 25 13:55 fm
I want to split this output so that FIRST_TEN_ARCHIVE gets initailized only with
-rwxr-xr-x 1 areza staff 1458 Feb 25 13:55 fm
i.e the 2nd line of output
Thanks in anticipation !
FIRST_TEN_ARCHIVE = head -2 config/old_ls_out
# config/old_ls_out is a file
gives me the output ...
drwxr-xr-x 2 areza staff 96 Feb 25 13:56 config
-rwxr-xr-x 1 areza staff 1458 Feb 25 13:55 fm
I want to split this output so that FIRST_TEN_ARCHIVE gets initailized only with
-rwxr-xr-x 1 areza staff 1458 Feb 25 13:55 fm
i.e the 2nd line of output
Thanks in anticipation !