Create after_cloning.md

This commit is contained in:
Jay Gabriels
2021-01-30 08:41:50 -08:00
parent d479395bdf
commit 44a8528008

15
examples/after_cloning.md Normal file
View File

@@ -0,0 +1,15 @@
# After Cloning
A few ways to use ghorg after cloning repos. Please add yours below if you have one!
> dump all test.sh files from ghorg dir into one a results file
```
find $HOME/Desktop/ghorg -name "test.sh" -exec cat {} \; > results
```
> find any use of gcloud in a file called test.sh
```
find $HOME/Desktop/ghorg -name "test.sh" | xargs grep -i "gcloud"
```