anidl/print_fzf.py
2021-08-14 14:13:14 +02:00

10 lines
269 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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()
fzf_file = fzf_file.replace("", "")
fzf_file = fzf_file.replace('', '')
print(fzf_file)
sys.exit()