We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67c31ba commit e07232fCopy full SHA for e07232f
searchsploit.bat
@@ -1,4 +1,4 @@
1
@echo off
2
-set pythonscript = ""
+set pythonscript=""
3
:: put in the exact directory where youre storing your script. you can place this in a folder in path and youll be able to run it like on linux
4
python "%pythonscript%\searchsploit.py" %*
setup.py
@@ -28,7 +28,7 @@
28
open(os.getenv("userprofile").replace(
29
"\\", "/") + "/.searchsploit_rc", "w").write(rc)
30
batch = open("searchsploit.bat", "r").readlines()
31
- batch[1] = 'set pythonscript = "' + os.getcwd() + '"'
+ batch[1] = 'set pythonscript="' + os.getcwd() + '"'
32
batch = "\n".join(batch)
33
open("searchsploit.bat", "w").write(batch)
34
else:
0 commit comments