練習問題
練習問題
問1 ディレクトリに「profile.d」を含むファイルを探し、その中で「color」を含むファイルを検索してください。
実行結果
1 | [user01@localhost ~]$ ??? |
2 | /etc/profile.d/colorgrep.csh |
3 | /etc/profile.d/colorgrep.sh |
4 | /etc/profile.d/colorls.csh |
5 | /etc/profile.d/colorls.sh |
図
問2 ディレクトリ「/bin」以下のファイルの中、sizeが5バイト以下のファイルを検索してください。
実行結果
1 | [user01@localhost ~]$ ??? |
2 | /bin/xzmore |
3 | /bin/lesspipe.sh |
4 | /bin/gunzip |
5 | /bin/zforce |
6 | /bin/unicode_start |
7 | /bin/run-parts |
図
問3 ファイル「/etc/group」の内、文字列「sys」が含まれる行を行番号と共に出力してください。
実行結果
1 | [user01@localhost /]$ ??? |
2 | 4:sys:x:3: |
3 | 29:systemd-journal:x:190: |
4 | 30:systemd-network:x:192: |
図
問4 ディレクトリ「/lib」の中、先頭の文字が「k」で始まるファイルを出力してください。
実行結果
1 | [user01@localhost ~]$ ??? |
2 | kbd |
3 | kdump |
4 | kernel |
図
問5 ディレクトリ「/etc」の先頭の3行とディレクトリ「/usr」の末尾の7行を出力してください。
実行結果
1 | [user01@localhost /]$ ??? |
2 | 合計 1044 |
3 | -rw-r--r--. 1 root root 5090 11月 5 2016 DIR_COLORS |
4 | -rw-r--r--. 1 root root 5725 11月 5 2016 DIR_COLORS.256color |
5 | [user01@localhost /]$ ??? |
6 | dr-xr-xr-x. 38 root root 20480 6月 9 14:26 lib64 |
7 | drwxr-xr-x. 19 root root 4096 6月 9 14:02 libexec |
8 | drwxr-xr-x. 12 root root 131 6月 9 14:02 local |
9 | dr-xr-xr-x. 2 root root 12288 6月 9 14:26 sbin |
10 | drwxr-xr-x. 74 root root 4096 6月 9 14:26 share |
11 | drwxr-xr-x. 4 root root 34 6月 9 14:02 src |
12 | lrwxrwxrwx. 1 root root 10 6月 9 14:02 tmp -> ../var/tmp |