/home/msabbar/sample_dir2
`-- sample_dir
|-- admin
|-- cambridge
| |-- cafeteria
| |-- library
| `-- security
| |-- annex
| |-- building
| `-- parking
|-- faculty
|-- history.exe
|-- markham
| |-- annex
| |-- building1
| `-- parking
`-- stenton
|-- gen_ed
| |-- Holidays
| `-- cars2
|-- lib_arts
| |-- english.txt
| `-- match.doc
`-- phone_directory
11ディレクトリ、12ファイル
現在のディレクトリはsample_dirです。ファイルcars2の2行目を大文字に変換して表示します(ヒント:「head」コマンドで開始します)。
大丈夫そう私はしました
head -2 | tr "[a-z]" "[A-Z]" < stenton/gen_ed/cars2
と
head -n 2 | tr "[a-z]" "[A-Z]" < stenton/gen_ed/cars2
しかし、それは間違っています
私はここで何が間違っているのですか?