Closed purarue closed 5 years ago
Hi, this PR allows you to pass the location of the BreachCompilation/data directory as the third argument, like:
./breach-parse.sh @gmail.com gmail.txt "~/Downloads/BreachCompilation/data"
If you don't supply the location, it assumes its in /opt/breach-parse/BreachCompilation/data like before.
/opt/breach-parse/BreachCompilation/data
I also:
-not -path '*/\.*'
find
progressBar
$(( ))
#!/bin/bash
#!/usr/bin/env bash
/bin/bash
echo
awk
master.txt
passwords.txt
users.txt
This looks like I've changed much more than I have since I also normalized the indentation to four spaces, you can see major changes I did here.
Please let me know if you want me to update anything.
Hi, this PR allows you to pass the location of the BreachCompilation/data directory as the third argument, like:
./breach-parse.sh @gmail.com gmail.txt "~/Downloads/BreachCompilation/data"
If you don't supply the location, it assumes its in
/opt/breach-parse/BreachCompilation/data
like before.I also:
-not -path '*/\.*'
to thefind
commands to ignore hidden files that may have been created by the OSprogressBar
function to use the double parenthesis construct for math$(( ))
#!/bin/bash
to#!/usr/bin/env bash
incase for some reason bash isn't at/bin/bash
echo
statements when theawk
commands are running to let to user know that usernames/passwords are being extractedmaster.txt
,passwords.txt
andusers.txt
files dont sync to Github.This looks like I've changed much more than I have since I also normalized the indentation to four spaces, you can see major changes I did here.
Please let me know if you want me to update anything.