1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ruby 標準入力 ファイルからの入力をコマンドとして実行する方法

Posted at

#はじめに
標準入力の実行をローカル環境でも試すための方法です。

###前提
使用言語:Ruby

##実行コマンド

$ ruby hoge.rb < input.txt

###解説
hoge.rb : 実行するrubyファイル
input.txt : 標準入力したいデータが格納されたtxtファイル

今までは、メソッドの引数に標準入力して得られた配列を考慮して、コーディングテストを受験していましたが、こちらの方法を実行してからは格段に効率が上がりました。

##参考
標準入出力、リダイレクト、パイプ

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?