cat << "EOF" | tee /home/howard/scripts/firefox_start.sh
#!/bin/bash

sleep 60

firefox
EOF
  • Make it executable:
    chmod +x /home/howard/scripts/firefox_start.sh
    

Updated: