Daily Shaarli

All links of one day in a single page.

February 16, 2020

Tomas Sedovic (@TomasSedovic) | Nitter

Bon à savoir:

I wanted to delete every file called "contents.html" so I ran: find -type f -delete -name contents.html It worked! But it also deleted every other file. find's args are ordered. "delete" works on every match before it, ignoring anything after. "name" should have gone first.