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.

22 lines
595 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://www.rememberthemilk.com"
c="https://asks.timetask.com"
d="https://keep.google.com/keep/"
f="https://shiny.chepec.se"
g="https://luxor.chepec.se/nextcloud/"
# start the local http server for serving PDF reports (used in Shiny sample matrix)
cd /home/taha/chepec
# server runs on port 8000 (default) in the working directory
python /home/taha/chepec/chetex/common/bash/shiny-python-localhost.py &
# start Chrome
google-chrome $b $c $d $f $g
exit 1