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