initial commit
[mirrors/ArchLinux-Packages.git] / milw0rm / milw0rm / makeindex-milw0rm
1
2 #!/bin/bash
3 echo "Generating Exploit List, please wait"
4 rm -rf sploitlist.txt
5 find . -xtype f >allfiles.txt
6 for file in $(cat allfiles.txt);do
7 echo $file $(head -1 $file|cut -d" " -f2-30)|grep -v CVS >>sploitlist.txt
8 done
9 rm allfiles.txt
10 echo "Done!"
11 echo 'You can "cat sploitlist.txt |grep -i exploit"'
12
This page took 0.322796 seconds and 4 git commands to generate.