Ask HN: What Are Your Technical/Business Resolutions for the New Year?
4 pointsby sathishvj0 comments
$ gencmd find txt files that contain the text hello
find . -type f -name "*.txt" | xargs grep -i hello
find . -type f -name "*.txt" -exec grep -i "hello" {} \;
find . -type f -name "*.txt" -exec grep -i hello {} \;
$ gencmd -c grep find txt files that contain the text hello
grep -r hello *.txt
grep -r "hello" \*.txt
If you want to know more about how I went about building it, I've written about it here: https://medium.com/@sathishvj/gencmd-generate-commands-with-... Focus: looking for projects/consulting in GCP.
Technologies: GCP 6x certified (all tech certifications) and also good at GoLang, Angular/TS, SQL, some ML, etc.
Willing to relocate: to singapore or mainland europe but prefer for now to be a digital nomad out of India.
Email: my user name @yahoo.com Focus: looking for projects/consulting in GCP.
Technologies: GCP 6x certified (all tech certifications) and also good at GoLang, Angular/TS, SQL, some ML, etc.
Willing to relocate: to singapore or mainland europe but prefer to be a digital nomad out of India.
Email: my user name @yahoo.com