回答:
それを.txtに貼り付けたい場合、このスニペットはあなたのためにトリックを行う必要があります:
#!/usr/bin/perl
use warnings;
use strict;
my @questions;
while (<>) { push(@questions,$_) }
print $questions[rand @questions];
それを新しいperlスクリプトに貼り付け、選択したperlインタープリターを介して、この形式の引数としてテキストファイルの名前を付けて実行します。
Does a plane need wings?
Why do planes without wings fly so poorly?
What's the drag coefficient of a streamlined halfbody?
What happens to a Sonex travelling at 0.75C at 1000m altitude?
What happens to the planet earth in above scenario?
...など。