Created
November 8, 2010 17:48
-
-
Save ngs/667997 to your computer and use it in GitHub Desktop.
ポンパレのハーゲンダッツ
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
| alias ice='perl -MLWP::Simple -le "(my \$i=get q{http://bit.ly/bkKBvA})=~s%.+nt>(\d+).*%\$1%;print \$i"' |
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
| perl -MLWP::Simple -e '(my $i=get q{http://bit.ly/bkKBvA})=~s%.+nt>(\d+).*%$1%;print qq{$i\n}' |
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
| #!/usr/bin/perl | |
| use LWP::Simple; | |
| (my $i=get q{http://bit.ly/bkKBvA})=~s%.+nt>(\d+).*%$1%;print qq{$i\n} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment