cs252/lab3-src/test-shell/test6
2018-10-25 14:45:56 -04:00

17 lines
328 B
Bash
Executable File

#!/bin/bash
rm -f csh-out shell-out
echo -e "\033[1;4;93mTest6: 2 Pipes\033[0m"
echo "cat file1.cc | grep malloc" > shell-in
/bin/sh < shell-in > csh-out
../shell < shell-in > shell-out
diff shell-out csh-out
if [ $? -ne 0 ]
then
echo -e "\033[1;31m$0 Failed\033[0m"
exit -1
fi
echo -e "\033[1;32m$0 Passed\033[0m"
exit 0