2014-08-20から1日間の記事一覧

CGIの起動

CGI

設定ファイルの場所: /etc/init.d/httpd Directory "/var/www/html" CGIの許可 http://httpd.apache.org/docs/2.0/ja/howto/cgi.html 設定ファイルの変更 /etc/init.d/httpd (1)CGIの許可 Options +ExecCGI (2)rubyの許可 #AddHandler cgi-script .cgi ↓変…

csvtohtml CSVからhtml作成

csvtohtml 681 awk -F"," 'NF==3{print 0}' summary_sort_400_b.txt 682 awk -F"," 'NF==3{print 0}' summary_sort400_b.txt 683 awk -F"," 'NF==12{print 0}' summary_sort400_b.txt 684 awk -F"," '{print NF}' summary_sort400_b.txt 685 awk -F"," 'NF==…