Update sherlock command

This commit is contained in:
Nexus 2023-06-03 15:04:18 +01:00
parent 090c866b1a
commit f55d8e971d
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -1570,17 +1570,15 @@ class OtherCog(commands.Cog):
"-v", "-v",
f"{tempdir}:/opt/sherlock/results", f"{tempdir}:/opt/sherlock/results",
"sherlock", "sherlock",
# "--verbose", "--folderoutput", "/opt/sherlock/results",
"--print-found", "--print-found",
# "--no-color" "--csv"
] ]
if search_nsfw: if search_nsfw:
command.append("--nsfw") command.append("--nsfw")
if use_tor: if use_tor:
command.append("--tor") command.append("--tor")
# Output to result.csv # Output to result.csv
command.append("--csv")
command.extend(["-fo", "/opt/sherlock/results"])
# Username to search for # Username to search for
command.append(username) command.append(username)
# Run the command # Run the command