Initial commit of tools.

This commit is contained in:
Darren 'Tadgy' Austin 2022-09-07 14:40:52 +01:00
commit c6cb9f4286
5 changed files with 468 additions and 0 deletions

9
list-perl-modules Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
# List all the perl modules currently installed.
perl -MCPAN - <<EOF
for \$mod (CPAN::Shell->expand("Module","/./")){
next unless \$mod->inst_file;
print \$mod->id, "\n";
}
EOF