Какова правильная процедура обновления карты nvidia?

С awk:

awk '$4 == "LEC05" { print $2 }' /path/to/inputfile | sort > outputfile

С grep и cut:

grep 'LEC05' /path/to/inputfile | cut -f2 | sort > outputfile
1
17.10.2015, 16:49
0 ответов

Теги

Похожие вопросы