Last active
November 6, 2017 02:50
-
-
Save akanehara/dd9adf683a2ce703bd908828783c29be to your computer and use it in GitHub Desktop.
Perlスニペット
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 標準出力・標準エラー出力のバッファリングをしない | |
{ $|=1; my $_old = select(STDERR); $|=1; select($_old); } | |
# 入力時の行区切り指定 | |
local $/ = "\r\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment