5
4

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 5 years have passed since last update.

Perlワンライナー

Last updated at Posted at 2015-03-11

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

Base64エンコード

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

Base64デコード

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

マイクロ秒スリープ

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?