mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-24 16:21:53 +00:00
19 lines
204 B
Bash
19 lines
204 B
Bash
|
#! /bin/bash
|
||
|
echo troggle
|
||
|
cd ~/troggle
|
||
|
git pull
|
||
|
code . &
|
||
|
echo expoweb
|
||
|
cd ../expoweb
|
||
|
git pull
|
||
|
code . &
|
||
|
echo drawings
|
||
|
cd ../drawings
|
||
|
git pull
|
||
|
code . &
|
||
|
cd ../loser
|
||
|
echo loser
|
||
|
git pull
|
||
|
code . &
|
||
|
cd ../troggle
|