MCPcopy Create free account
hub / github.com/qilingframework/qiling / ask_run_options

Function ask_run_options

qltui.py:264–280  ·  view source on GitHub ↗

Ask arguments for run

()

Source from the content-addressed store, hash-verified

262
263
264def ask_run_options():
265 """
266 Ask arguments for run
267 """
268 filename = questionary.path("filename:", validate=FilePathValidator).ask()
269
270 rootfs = questionary.path("rootfs:", only_directories=True,
271 validate=RequiredDirectoryPathValidator).ask()
272
273 args = questionary.text("args:").ask()
274 args = args.split()
275
276 run_args = questionary.text("run_args:").ask()
277 run_args = run_args.split()
278
279 return {"filename": filename, "rootfs": rootfs, "args": args,
280 "run_args": run_args}
281
282
283def ask_code_options():

Callers 1

get_dataFunction · 0.85

Calls 1

pathMethod · 0.80

Tested by

no test coverage detected