Initial commit of tools.
This commit is contained in:
commit
c6cb9f4286
5 changed files with 468 additions and 0 deletions
9
list-perl-modules
Executable file
9
list-perl-modules
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue