179 shaares
1 result
tagged
snap
lets you install, configure, refresh and remove snaps. Snaps are packages that work across many different Linux distributions, enabling secure delivery and operation of the latest apps and utilities
list
list installed package with last revision
snap list
-all # list installed package with all resions
info
shows detailed information about snaps
snap info <snap>
--color=[auto|never|always] # Use a little bit of color to highlight some things. (default: auto)
--unicode=[auto|never|always] # Use a little bit of Unicode to improve legibility. (default: auto)
--abs-time # Display absolute times (in RFC 3339 format). Otherwise, display relative times up to 60 days, then YYYY-MM-DD
--verbose # Include more details on the snap (expanded notes, base, etc.)
find
find package with his name
snap find <snap>
remove
remove package with all revisions
sudo snap remove <snap>
--revision $REV # remove package with for only a revision
purge disabled
snap list --all | grep disabled$ | awk '{ print $1" "$3 }' | xargs -l bash -c 'sudo snap remove $0 --revision $1'