Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror

Comment Re:poor lazy dee-veh-lupperz (Score 1) 33

Due to this snap stupidity, I had to create my own script to replace "df" (which I generally use instead of fdisk -l for a quick overview of storage space):

#!/bin/sh df --si "$@" | grep -v /snap|sort -h -k 2

With it being so easy to create "magic" file systems in Linux, I can't see why they don't make one single mounted file system that hosts all the snaps as subdirectories instead of polluting the pool of mount points.

How about: df --si "$@" | egrep -v "/snap|tmpfs|udev"|sort -h -k 2

Slashdot Top Deals

If you push the "extra ice" button on the soft drink vending machine, you won't get any ice. If you push the "no ice" button, you'll get ice, but no cup.

Working...