Horje
snaps in ubuntu take a lot of space Code Example
snaps in ubuntu take a lot of space
#!/bin/bash
# Removes old revisions of snaps
# CLOSE ALL SNAPS BEFORE RUNNING THIS
set -eu

LANG=en_US.UTF-8 snap list --all | awk '/disabled/{print $1, $3}' |
    while read snapname revision; do
        snap remove "$snapname" --revision="$revision"
    done




Shell

Related
react-laag Code Example react-laag Code Example
install jira Code Example install jira Code Example
how to see previous git commits Code Example how to see previous git commits Code Example
checking remote status in git Code Example checking remote status in git Code Example
Trying to bind fd 26 to <0.0.0.0:443>: errno=13 Code Example Trying to bind fd 26 to <0.0.0.0:443>: errno=13 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9