練習問題

練習問題

問1 ディレクトリに「profile.d」を含むファイルを探し、その中で「color」を含むファイルを検索してください。

実行結果

[user01@localhost ~]$ ???
/etc/profile.d/colorgrep.csh
/etc/profile.d/colorgrep.sh
/etc/profile.d/colorls.csh
/etc/profile.d/colorls.sh

問2 ディレクトリ「/bin」以下のファイルの中、sizeが5バイト以下のファイルを検索してください。

実行結果

[user01@localhost ~]$ ???
/bin/xzmore
/bin/lesspipe.sh
/bin/gunzip
/bin/zforce
/bin/unicode_start
/bin/run-parts

問3 ファイル「/etc/group」の内、文字列「sys」が含まれる行を行番号と共に出力してください。

実行結果

[user01@localhost /]$ ???
4:sys:x:3:
29:systemd-journal:x:190:
30:systemd-network:x:192:

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

実行結果

[user01@localhost ~]$ ???
kbd
kdump
kernel

問5 ディレクトリ「/etc」の先頭の3行とディレクトリ「/usr」の末尾の7行を出力してください。

実行結果

[user01@localhost /]$ ???
合計 1044
-rw-r--r--.  1 root root     5090 11月  5  2016 DIR_COLORS
-rw-r--r--.  1 root root     5725 11月  5  2016 DIR_COLORS.256color
[user01@localhost /]$ ???
dr-xr-xr-x. 38 root root 20480  6月  9 14:26 lib64
drwxr-xr-x. 19 root root  4096  6月  9 14:02 libexec
drwxr-xr-x. 12 root root   131  6月  9 14:02 local
dr-xr-xr-x.  2 root root 12288  6月  9 14:26 sbin
drwxr-xr-x. 74 root root  4096  6月  9 14:26 share
drwxr-xr-x.  4 root root    34  6月  9 14:02 src
lrwxrwxrwx.  1 root root    10  6月  9 14:02 tmp -> ../var/tmp


NEXT>> 10章 練習問題