練習問題

練習問題

問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 /]$ ???
24:sys:x:3:
329:systemd-journal:x:190:
430:systemd-network:x:192:

問4 ディレクトリ「/lib」の中、先頭の文字が「k」で始まるファイルを出力してください。

実行結果

1[user01@localhost ~]$ ???
2kbd
3kdump
4kernel

問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 /]$ ???
6dr-xr-xr-x. 38 root root 20480  6月  9 14:26 lib64
7drwxr-xr-x. 19 root root  4096  6月  9 14:02 libexec
8drwxr-xr-x. 12 root root   131  6月  9 14:02 local
9dr-xr-xr-x.  2 root root 12288  6月  9 14:26 sbin
10drwxr-xr-x. 74 root root  4096  6月  9 14:26 share
11drwxr-xr-x.  4 root root    34  6月  9 14:02 src
12lrwxrwxrwx.  1 root root    10  6月  9 14:02 tmp -> ../var/tmp


NEXT>> 10章 練習問題

f