All links of one day
in a single page.
<Previous day - Next day>

rss_feedDaily RSS Feed
floral_left The Daily Shaarli floral_right
——————————— January 5, 2018 - Friday 05, January 2018 ———————————
docker -

My /var/lib/docker folder was non empty (12GB) event after big cleanup (containers, images, volumes..)

It's a known issue with some layers not removed when you do docker rm -f (force)

Solution : service docker stop; rm -rf /var/lib/docker/*; service docker start

:-/

utf - grep -
thumbnail

The easiest way is to just convert the text file to utf-8 and pipe that to grep:

iconv -f utf-16 -t utf-8 file.txt | grep query

-