fix gem5-shell quoting

This commit is contained in:
Ciro Santilli
2018-02-26 11:31:10 +00:00
parent 7cff306a0b
commit 68788a8f35

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash
offset="${1:-0}"
base=3456
telnet localhost $(("$base" + "$offset"))
telnet localhost $(($base + $offset))