Tagged Questions
4
votes
1answer
652 views
How do I use File::Find::Rule in taint mode?
I am trying to get a list of subdirectories in a given directory using something like the following:
#!/usr/bin/perl -wT
use strict;
use warnings;
use File::Find::Rule;
use Data::Dumper;
my ...
0
votes
3answers
1k views
Simple script to replace Apache's mod_autoindex with a user-friendly directory listing
The Apache module mod_autoindex generates "directory indexes" that show users a crude hyperlinked list of the files and directories inside a directory (when there is no index.html or other ...