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

13 lines
229 B
Bash

#!/bin/bash
## Start Chrome with multiple tabs (Gmail, RTM, etc.)
## Written Oct 12, 2013
## Taha Ahmed
a="https://mail.google.com"
b="https://rememberthemilk.com"
c="https://chepec.timetask.com"
google-chrome $a $b $c
exit 1