anidl/print_fzf.py

9 lines
297 B
Python
Raw Normal View History

2021-07-09 21:34:37 +02:00
import os,sys
#just a quick script to print the fzf.txt file content
dn = os.path.dirname(os.path.realpath(__file__))
2022-02-03 16:25:38 +01:00
fzf_file = open(dn + "/fzf.txt", encoding="utf-8").read()
fzf_file = fzf_file.replace("", "")
fzf_file = fzf_file.replace('', '')
2021-07-09 21:34:37 +02:00
print(fzf_file)
sys.exit()