From 320f02243cf36c7cb5a0143ccb04f6b526afb83b Mon Sep 17 00:00:00 2001 From: CronyAkatsuki Date: Fri, 9 Jul 2021 21:34:37 +0200 Subject: [PATCH] Helper script to print the anime list --- py_adl/print_fzf.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 py_adl/print_fzf.py diff --git a/py_adl/print_fzf.py b/py_adl/print_fzf.py new file mode 100644 index 0000000..62f83a6 --- /dev/null +++ b/py_adl/print_fzf.py @@ -0,0 +1,8 @@ +import os,sys +#just a quick script to print the fzf.txt file content + +dn = os.path.dirname(os.path.realpath(__file__)) +fzf_file = open(dn + "/fzf.txt").read() + +print(fzf_file) +sys.exit() \ No newline at end of file