時間単位 # grep “21/Jan/” example.com_access_log-20180122 | awk ‘{print $4}’ | cut -b 1-15 | sort | uniq -c 7564 [21/Jan/2018:03 11325 [21/Jan/2018:04 10546 [21/Jan/2018:05 12907 [21/Jan/2018:06 …
タグ: Shell
設定ファイルの有効なディレクティブを取り出す
#と空行を除く # cat httpd.conf | grep -v “^\s*$” | grep -v “^\s*#” ;と空行を除く # cat php.ini | grep -v “^\s*$” | grep -v “^\s*;” これは便利でよく使います。 @see http://ossfan.net/setup/l …