deb-uninstall.sh 144 B

1234567891011121314
  1. #!/bin/sh
  2. die()
  3. {
  4. echo "$*" >&2
  5. exit 1
  6. }
  7. apt-get purge $(dpkg --get-selections | grep awlsim | cut -f1) ||\
  8. die "Failed to purge"
  9. exit 0