11a7f84ffce21fd90a1d31b2f0180499fd9b594d
commit 11a7f84ffce21fd90a1d31b2f0180499fd9b594d
Author: spesk1 <spesk@pm.me>
Date: Sat Jun 29 19:17:35 2019 -0400

Just adding a few characters to the replace regex

diff --git a/download_archive_dot_org.pl b/download_archive_dot_org.pl
index e3f779d..6305db9 100755
--- a/download_archive_dot_org.pl
+++ b/download_archive_dot_org.pl
@@ -35,7 +35,7 @@ sub make_filename($) {
my $filename;
open(my $fh, ">>", \$filename);
foreach my $char ( split("",$name) ) {
- if ( $char =~ m/[\s->']/ ) {
+ if ( $char =~ m/[\s->'\/\!\&\:]/ ) {
print $fh "";
} else {
print $fh "$char";