Linux

CentOS6.2にcompassをインストール

RubyGemのインストール yum install ruby-enterprise-rubygems.x86_64 gem update --system compassのインストール gem install compass

CentOS6.2にgruntをインストール

Node.jsのインストール 1. Node.jsのサイトからtar.gzをダウンロード2. 展開 $ tar zxvf node-v0.10.12.tar.gz 3. ビルド $ cd node-v0.10.12 $ sudo ./configure $ sudo make $ sudo make install gruntのインストール $ sudo /usr/local/bin/npm install -g…

文字列を再帰的に検索

grep -r "hoge" *

curlコマンドで「Warning: You can only select one HTTP request!」が出る

$ curl --data foo=bar --header "hoge:piyo" http://xxx.xx.jp Warning: You can only select one HTTP request! $ curl --data foo=bar -H "hoge:piyo" http://xxx.xx.jp だとおk。