10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/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
|