コマンドラインから実行(基本)

back
$ perl -e 'print "hoge\n"'

(例)epoch を表示(GNU date の %s オプションと同等)
$ perl -e 'print time, "\n"'

back