Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

delete old version of snaps

#!/bin/bash
# Removes old revisions of snaps
# CLOSE ALL SNAPS BEFORE RUNNING THIS
set -eu
snap list --all | awk '/disabled/{print $1, $3}' |
    while read snapname revision; do
        snap remove "$snapname" --revision="$revision"
    done
Comment

PREVIOUS NEXT
Code Example
Shell :: vs code toggle soft warap 
Shell :: pnpm install nextUI 
Shell :: git rebase develop into feature 
Shell :: read fingerprint ssh-keygen 
Shell :: whatsapp download linux 
Shell :: git reset to origin/master 
Shell :: check memory all information 
Shell :: download post it for ubuntu 
Shell :: windows remove pip 
Shell :: find out current shell 
Shell :: update homestead after yaml change 
Shell :: install shutter ubuntu 
Shell :: flutter license NoClassDefFoundError 
Shell :: Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs 
Shell :: dev/random dev/urandom bash 
Shell :: linu xcreate folder link 
Shell :: how to install pyqt5 dev tools 
Shell :: update flutter command 
Shell :: install antigen mac 
Shell :: command to check recent commit 
Shell :: use x2go with gnome linux 
Shell :: android studio adb path mac 
Shell :: batch delete folder 
Shell :: pyinstaller no console 
Shell :: WSL 2 requires an update to its kernel component. 
Shell :: ngxcountup 
Shell :: redis start stop commands 
Shell :: linux set env permanent 
Shell :: linux batch resize jpg 
Shell :: how to check my git username 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =