|
|
@ -7,7 +7,7 @@ class Interactives:
|
|
|
|
def run_cli(args:str = "") -> str:
|
|
|
|
def run_cli(args:str = "") -> str:
|
|
|
|
"""Pass arguments to Sherlock as a normal user on the command line"""
|
|
|
|
"""Pass arguments to Sherlock as a normal user on the command line"""
|
|
|
|
# Adapt for platform differences (Windows likes to be special)
|
|
|
|
# Adapt for platform differences (Windows likes to be special)
|
|
|
|
if platform.system == "Windows":
|
|
|
|
if platform.system() == "Windows":
|
|
|
|
command:str = f"py -m sherlock {args}"
|
|
|
|
command:str = f"py -m sherlock {args}"
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
command:str = f"sherlock {args}"
|
|
|
|
command:str = f"sherlock {args}"
|
|
|
|