10 lines
179 B
Bash
10 lines
179 B
Bash
|
#!/bin/bash
|
||
|
: > MemoOutputTest.txt
|
||
|
gcc -o Memo Memo.c
|
||
|
echo Testing history printing...
|
||
|
./Memo
|
||
|
echo Testing command...
|
||
|
./Memo echo hello
|
||
|
echo Testing reusing number...
|
||
|
./Memo -e 3
|