반응형
Q1>
# find . -type f | wc -l
Q2>
# ls PokeDex/ | tr A-Z a-z | sort -n > all-pokemon.txt
Q3>
# cat all-pokemon.txt | head -18 | tail -3
Q4>
# cat all-pokemon.txt | head -151
Q5>
# cat all-pokemon.txt | head -151 | tr -d 0-9
Q6>
# cat all-pokemon.txt | head -151 | tr -d 0-9 | sort
Q7>
# cat all-pokemon.txt | head -151 | tr -d 0-9 | sort > original-151.txt
반응형
'CentOS > Study' 카테고리의 다른 글
Section14>찾기 퀴즈 답안 (0) | 2022.09.12 |
---|---|
Section13>확장 퀴즈 답안 (0) | 2022.09.07 |
Section11>리다이렉션 퀴즈 답안 (0) | 2022.09.04 |
Section10>파일로 작업하기 퀴즈 답안 2 (0) | 2022.08.22 |
Section10>파일로 작업하기 퀴즈 답안 1 (0) | 2022.08.22 |