add start of commands cheatsheet

This commit is contained in:
kjeld Schouten-Lebbing 2021-09-10 18:44:28 +02:00
parent b622dd735e
commit 20bacc444e
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# Command Cheatsheet
These are some commands that are nice to keep track of:
**give execute permissions to all sh files:**
`find . -name '*.sh' | xargs git update-index --chmod=+x`
**list all used repositories in the catalog:**
`find . -name 'values.yaml' | xargs cat | grep "repository" | grep -v "{" | awk -F":" '{ print $2 }' | grep -v '^$' | sort --unique`