diff options
author | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@hs-augsburg.de> | 2022-07-25 17:55:39 +0200 |
commit | 3fff6023602822531efdae30bc8ebf862967f1ef (patch) | |
tree | 16028102b8d850f8ab3115d28a8539ca6bc5f51d /VexRiscv/src/test/python/gcloud/remotePull.py |
Initial Commit
Diffstat (limited to 'VexRiscv/src/test/python/gcloud/remotePull.py')
-rwxr-xr-x | VexRiscv/src/test/python/gcloud/remotePull.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/VexRiscv/src/test/python/gcloud/remotePull.py b/VexRiscv/src/test/python/gcloud/remotePull.py new file mode 100755 index 0000000..7160579 --- /dev/null +++ b/VexRiscv/src/test/python/gcloud/remotePull.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +from gcloud import GCInstance + +gci = GCInstance("vexriscv") +gci.create() +gci.start() +gci.remoteToLocal("run.txt","run.txt") +gci.stop() +gci.delete() |