9 lines
350 B
Bash
9 lines
350 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for url in \
|
||
|
https://analytics.google.com/analytics/web/#/report-home/a62285904w148949408p153837579 \
|
||
|
https://analytics.google.com/analytics/web/#/report-home/a62285904w148936346p153856341 \
|
||
|
https://analytics.google.com/analytics/web/#/report-home/a62285904w97282594p101425900; do
|
||
|
chromium --new-window ${url}
|
||
|
done
|