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.
19 lines
446 B
Bash
19 lines
446 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"
|
|
d="https://keep.google.com/keep/"
|
|
|
|
# open shiny sample-matrix
|
|
# find current port number by reading shiny.port file
|
|
PORT=$(</home/taha/chepec/chetex/sample-matrix/shinyapp/shiny.port)
|
|
s="http://localhost:$PORT"
|
|
|
|
google-chrome $a $b $c $d $s
|
|
|
|
exit 1
|