README.md aktualisiert
This commit is contained in:
parent
072ea8e062
commit
05afe32c4d
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -92,3 +92,14 @@ https://wiki.archlinux.org/title/QEMU#Chrooting_into_arm/arm64_environment_from_
|
|||
~~~
|
||||
cat urls | xargs -I+ wget --recursive '+/export/markdown' -erobots=off ; grep -r -o -E --no-filename 'pad.stratum0.org/p/dc[a-zA-Z0-9-]*' pad.stratum0.org >> urls; sort -u -o urls urls
|
||||
~~~
|
||||
|
||||
### Search Recursive to a String
|
||||
~~~
|
||||
grep -rnw '.' -e 'Suchtext'
|
||||
~~~
|
||||
~~~
|
||||
find . -type f -exec grep -l 'Suchtext' {} \;
|
||||
~~~
|
||||
~~~
|
||||
find . -type f -print0 | xargs -0 grep 'Suchtext'
|
||||
~~~
|
||||
|
|
Loading…
Add table
Reference in a new issue