25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
380 B

  1. #!/bin/bash
  2. muttdir="$HOME/.config/mutt/"
  3. wipe () { rm $HOME/.offlineimaprc
  4. rm -rf "$muttdir"/accounts
  5. rm -f "$muttdir"credentials/*gpg
  6. rm "$muttdir"personal.muttrc ;}
  7. (dialog --defaultno --title "Wipe all custom neomutt/offlineIMAP settings?" --yesno "Would you like to wipe all of the mutt/offlineIMAP settings generated by the system?" 6 60 && wipe) || clear && exit
  8. clear