Ubuntu

grepにバイナリファイルだと怒られる

テキストファイルなのにgrepをかけると、バイナリファイルだと怒られる。 vi,cat,less,moreなど使えば読める。 #! /usr/bin/env ruby pat = ARGV.shift while gets do print if /#{pat}/ end は動いた。 less file | grep pattern #OK cat file | grep patte…

Intel CompilerとMPICH2のインストールメモ

Ubuntu8.10にIntel Compiler11.074とMPICH2をインストールした. Intel Compilerのinstall 日本語化されててビックリした. MPICH2のinstall rootのログインシェルはbashなので.bashrcに source /opt/intel/Compiler/11.0/074/bin/iccvars.sh intel64 source…