Experimental p7c, file finding errors. Starting point for testing Full Disk Encryption Ant

This commit is contained in:
2026-05-06 09:39:32 -04:00
parent b37b5da96f
commit 70312a73ff
7 changed files with 184 additions and 1 deletions

View File

@@ -8,12 +8,13 @@ from scripts.help import help
from scripts.exit import exit
from scripts.make_directory import make_directory
from scripts.color_print import color_print
from scripts.p7c import p7c
from pathlib import Path
# Shitty test
# list_files.main()
if_verbose = 0
if_verbose = 1
def verbose(strings):
if if_verbose == 1:
@@ -59,6 +60,8 @@ def match_command(command, args_list):
exit.main(args_list)
elif command == "make_directory":
make_directory.main(args_list)
elif command == "p7c":
p7c.main(args_list)
# use if else if else if else if to match the output
def cmdrun(keyword):