niwacchi.log

niwacchiのログ。

2011-11-01から1ヶ月間の記事一覧

PATHの管理

Mac

/etc/paths に記述されていて、記述順=優先順。パッケージ管理をHomebrewに変えたので、/usr/local/bin、/usr/local/sbin を /usr/bin、/usr/sbin より優先したいときなんかに変更する。

Rubyをrvmで管理

rvmをインストール curl -s https://rvm.beginrescueend.com/install/rvm > rvm-install.sh ./rvm-install.sh .bash_profileの設定例 # Load RVM function [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" rubyをインストール ※インストー…

テキストファイルを読み込んでのカンマ区切りデータを分割するやつ

明日の自分に私信。 use strict; use warnings; my $dirname = "./Data"; opendir(DIR, $dirname) or die "$dirname: $!"; my @dirs = readdir(DIR); foreach my $entry (@dirs) { if( $entry =~ /\.txt$/ ) { #echo $entry."\r\n"; open(FILE,"$dirname/$en…