Grep

From UVOO Tech Wiki
Revision as of 21:36, 27 December 2022 by Busk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
cat file | grep -v "^#\|^$"

grep -rl $oldstring /path/to/folder | xargs sed -i s@$oldstring@$newstring@g
grep -o '^[^#]*' file.yaml | grep -v -e '^[[:space:]]*$'
grep -o '^[^#]*' custom-values.yaml | grep -v "^\s*$"