README.md aktualisiert

This commit is contained in:
Simon Rieger 2025-08-23 04:48:27 +02:00
parent 072ea8e062
commit 05afe32c4d

View file

@ -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'
~~~