mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-10 19:10:36 +00:00
7 lines
217 B
Plaintext
7 lines
217 B
Plaintext
# this is notes for video: http://www.youtube.com/watch?v=5kpETDZQAyk
|
|
|
|
discover () {
|
|
keyword=$(echo "$@" | sed 's/ /.*/g' | sed 's:|:\\|:g' | sed 's:(:\\(:g' | sed 's:):\\):g')
|
|
locate -ir $keyword
|
|
}
|