Helper script to print the anime list

This commit is contained in:
CronyAkatsuki 2021-07-09 21:34:37 +02:00
parent 29a4dd3c8d
commit 320f02243c

8
py_adl/print_fzf.py Normal file
View File

@ -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()