Search
-
Script to print all tags from .txt files (run from archive directory)
#!/bin/bashfind . -type f | grep -v '/\.' | xargs grep -IEoh '#[^ ]+\s?' | sort | uniq -c | sort -r explanation: * finds all files * removes any files starting with /. (hidden files) * for each non-binary file, finds all lines matching # and any number of characters up to the next space and returns this part of the line… -
Re: Inline key-words and key-phrases