This repository has been archived on 2022-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/scripts/.local/bin/fragment-vimwiki-header

6 lines
143 B
Python
Executable File

#!/usr/bin/python
from sys import argv
from os.path import basename
print("# " + basename(argv[1]).replace("_"," ").split(".")[:1][0] + "\n")