Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

11 строки
367 B

  1. #!/bin/bash
  2. # Give this script the abstract name of an account and it will make it the default.
  3. title=$1
  4. muttdir="$HOME/.config/mutt/"
  5. muttdirsed=$(echo $muttdir | sed -e 's/\//\\\//g')
  6. grep "$muttdir"personal.muttrc -e "^source .*accounts.*" >/dev/null && \
  7. sed -i "s/^source .*accounts.*/source ${muttdirsed}accounts\/$title.muttrc/g" "$muttdir"personal.muttrc