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/sbin/apachectl -S | |
VirtualHost configuration: | |
wildcard NameVirtualHosts and _default_ servers: | |
*:80 is a NameVirtualHost | |
default server crf.example.com (/etc/httpd/conf.d/vhostcrf.conf:1) | |
port 80 namevhost crf.example.com (/etc/httpd/conf.d/vhostcrf.conf:1) | |
Syntax OK |
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/env perl | |
use Modern::Perl; | |
use autodie; | |
my $x; | |
open my $f, "<", $ARGV[0]; | |
seek $f, $ARGV[1], 0; |
NewerOlder