LoginSignup
5
4

More than 5 years have passed since last update.

Perlワンライナー

Last updated at Posted at 2015-03-11

仕事でたまに使うワンライナー。
シェルスクリプトの中から、サクッと使えて便利!

Base64エンコード
Perl
perl -MMIME::Base64 -le 'print encode_base64(`cat $ARGV[0]`, " ")' /tmp/FILE > /tmp/FILE.base64

Base64デコード
Perl
perl -MMIME::Base64 -le 'print decode_base64(`cat $ARGV[0]`)' /tmp/FILE.base64

マイクロ秒スリープ
Perl
perl -e 'use Time::HiRes qw(usleep); my $microseconds = 1500000; usleep( $microseconds);'

5
4
2

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
5
4