Computing
Easy search on db dumps
Submitted by justanuser, 25-04-2021, 04:40 PM, Thread ID: 204576
Thread Closed
Users browsing this thread: 1 Guest(s)
cat dumpFile.txt | grep usernameOrEmail
#!/bin/bash
for i in *.txt
do
echo searching in $i
cat $i | grep usernameOrEmail
done
chmod +x searchAllFiles.sh
./searchAllFiles.sh
Loading Info...