您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

11 行
180 B

  1. #!/bin/sh
  2. # Helps open an HTML file from mutt in a GUI browser without weird side effects.
  3. file=$(mktemp -u --suffix=.html)
  4. echo $file
  5. cp "$1" "$file"
  6. setsid firefox "$file" &