Last active
November 9, 2021 01:13
-
-
Save ifduyue/79026f7a025d60068eb2ba6d2e01a7fa to your computer and use it in GitHub Desktop.
My Perl one liner collections
This file contains 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
# Check if FILES contain lines ending with whitespaces | |
perl -Mopen=IO,:raw -ne 'print "$ARGV $.\n" if /\s\R/; $.=0 if eof;' FILES | |
# shuffle lines | |
perl -MList::Util=shuffle -e 'print shuffle <>' | |
# random string | |
perl -le 'print map chr 33 + rand 94, 1..pop||20' 50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment