perl -MList::Util=shuffle -e 'print shuffle(<>)' < hoge.txt
適当な行数を出力したい場合は tail -n で行数指定する。
perl -MList::Util=shuffle -e 'print shuffle(<>)' < hoge.txt | tail -n 1000 >> fuga.txt
Go to list of users who liked
More than 5 years have passed since last update.
perl -MList::Util=shuffle -e 'print shuffle(<>)' < hoge.txt
適当な行数を出力したい場合は tail -n で行数指定する。
perl -MList::Util=shuffle -e 'print shuffle(<>)' < hoge.txt | tail -n 1000 >> fuga.txt
Register as a new user and use Qiita more conveniently
Go to list of users who liked