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