5 lines
163 B
Bash
Executable File
5 lines
163 B
Bash
Executable File
file_itog=../all_flight_cmd_asotr.csv
|
|
cd ./csv_data
|
|
ls ./ | head -1 | xargs head -1 > ${file_itog}
|
|
find ./ | sort | xargs cat | grep -P '^[0-9].*' >> ${file_itog}
|