Files
thpeetz-notes/Quellen/Snippets/Find all URLs in files of local folder.md

6 lines
112 B
Markdown

```shell
find . -type f -exec grep -o 'http[s]\?://[^ ]\+' {} \; >> ~/.sync/media/Video/review/links.txt
```