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__))
|
|
|
|
|
fzf_file = open(dn + "/fzf.txt").read()
|
2021-08-14 14:13:14 +02:00
|
|
|
|
fzf_file = fzf_file.replace("[0;34m", "")
|
|
|
|
|
fzf_file = fzf_file.replace('[0m', '')
|
2021-07-09 21:34:37 +02:00
|
|
|
|
|
|
|
|
|
print(fzf_file)
|
|
|
|
|
sys.exit()
|