More work on apply, also trying to read dotted pairs.

This commit is contained in:
simon 2017-10-15 17:01:03 +01:00
parent 89b4f093f9
commit 8e7d1ab913
4 changed files with 18 additions and 3 deletions

View file

@ -1,7 +1,7 @@
#!/bin/bash
expected='1'
actual=`echo "(apply add '(1))"| target/psse 2> /dev/null | head -1`
actual=`echo "(apply 'add '(1))"| target/psse 2> /dev/null | head -2 | tail -1`
if [ "${expected}" = "${actual}" ]
then