diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2026-05-05 21:53:16 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2026-05-05 21:53:16 -0400 |
| commit | be8c956b0e819f2db0c6ae3598b6590b62982a83 (patch) | |
| tree | 9de8204882f8894776bd34f83af2800130bb87b5 /scripts/dafny | |
| parent | 6ad4d3dfd32b569f9485d24f80a768ed3ca19e46 (diff) | |
been a while
Diffstat (limited to 'scripts/dafny')
| -rwxr-xr-x | scripts/dafny | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/dafny b/scripts/dafny new file mode 100755 index 0000000..93b26a7 --- /dev/null +++ b/scripts/dafny @@ -0,0 +1,8 @@ +#!/bin/bash + +# get args +file="${!#}" +set -- "${@:1:$(($#-1))}" +args="$@" + +cat "$file" | ssh vm "tee ~/dafny/torun.dfy > /dev/null; dafny $args ~/dafny/torun.dfy" |
