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
Bareword found where operator expected at -e line 1, near "$.bar" | |
(Missing operator before bar?) | |
syntax error at -e line 1, near "$.bar |
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
use strict; | |
use warnings; | |
my $base = 8; | |
my %size = ( | |
y => $base + 1, | |
x => $base * 2 + 1, | |
); | |
my $palette = " .o+=*BOX@%&#/^SE"; |
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
# for so in $(find -L extlib -type f -name '*.so'); do ldd $so |grep -q 'not found' && echo $so && ldd $so; done | |
extlib/lib/perl5/x86_64-linux-thread-multi/auto/Net/SSLeay/SSLeay.so: /usr/lib/x86_64-linux-gnu/libssl.so.0.9.8: version `OPENSSL_0.9.8' not found (required by extlib/lib/perl5/x86_64-linux-thread-multi/auto/Net/SSLeay/SSLeay.so) | |
extlib/lib/perl5/x86_64-linux-thread-multi/auto/Net/SSLeay/SSLeay.so | |
extlib/lib/perl5/x86_64-linux-thread-multi/auto/Net/SSLeay/SSLeay.so: /usr/lib/x86_64-linux-gnu/libssl.so.0.9.8: version `OPENSSL_0.9.8' not found (required by extlib/lib/perl5/x86_64-linux-thread-multi/auto/Net/SSLeay/SSLeay.so) | |
linux-vdso.so.1 => (0x00007fff0b5ff000) | |
libssl.so.0.9.8 => /usr/lib/x86_64-linux-gnu/libssl.so.0.9.8 (0x00007f3f3907c000) | |
libcrypto.so.0.9.8 => not found | |
libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f3f38e64000) | |
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f3f38ad9000) | |
libcrypto.so.1.0.0 => /usr/lib/x86_64-linux-gnu |
OlderNewer