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.
 
 
 
 

21 satır
466 B

  1. #!/bin/sh
  2. muttdir="$HOME/Repos/email-mutt-offline/"
  3. # This script will remove an account from ~/.offlineimaprc and the
  4. # designated location in ~/.config/mutt/accounts.
  5. # Feed the script the title of the account.
  6. title=$1
  7. removeAccount() { sed -ie "
  8. /Account $title]/,/Account/{//!d}
  9. /Account $title]/d
  10. s/ $title\(,\|$\)//g
  11. s/=$title\(,\|$\)/=/g
  12. s/,$//g
  13. " ~/.offlineimaprc
  14. rm "$muttdir"accounts/$title.muttrc
  15. echo $title deleted. ;}
  16. removeAccount $title