linux:bashshell
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| linux:bashshell [2016/01/26 07:07] – [Find files that contain the text] admin | linux:bashshell [2022/10/29 16:15] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 315: | Line 315: | ||
| </ | </ | ||
| ==== Find files that contain the text ==== | ==== Find files that contain the text ==== | ||
| - | <code bash> | + | * Simple<code bash> |
| grep -rnw . -e "Begin Facebook Code" | grep -rnw . -e "Begin Facebook Code" | ||
| + | </ | ||
| + | * Custom find with regular expression< | ||
| + | grep -rnw . -e ' | ||
| + | </ | ||
| + | ==== Find files that file name length > 29 ==== | ||
| + | <code bash> | ||
| + | for i in `ls -1`;do sub_i=(`echo $i|cut -d' | ||
| </ | </ | ||
| ==== Manipulating String ==== | ==== Manipulating String ==== | ||
| Line 329: | Line 336: | ||
| </ | </ | ||
| Second String | Second String | ||
| + | </ | ||
| + | ==== update array to file ==== | ||
| + | Below is array configs.txt:< | ||
| + | c1 = 0, | ||
| + | c2 = 51, | ||
| + | c3 = 26, | ||
| + | </ | ||
| + | update array to files: | ||
| + | <code bash> | ||
| + | index=0;for i in `cat configs.txt | awk ' | ||
| </ | </ | ||
linux/bashshell.1453792078.txt.gz · Last modified: (external edit)
