Skip to content
sharun-s edited this page Dec 4, 2019 · 2 revisions

Random Notes:

To add autocompletion on bash commandline use

complete -W "$(cat Names.txt | sed -e "s/\(.*\)\"\1\"")" scriptname

So if Names.txt contains TED speakers or locations pressing tab after typing scriptname + some initial character will show a list of all names.

Clone this wiki locally