happiness (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) (^_^) happiness

2018-12-06から1日間の記事一覧

異なるディレクトリからゴリ押しでRubyを実行するShellScript

ゴリ押し function execruby (){ # 先に現在のディレクトリを保存する local current_dir=`pwd` cd ~/path/ ruby exec.rb; local pid=$! wait $pid cd $current_dir return 0 }