You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
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" &