blob: 521f0dcc7e4259f04ada38f403bc53f5c1ba724f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
red() {
echo "`tput setaf 1`$1`tput sgr 0`\c"
test_status=1
}
green() {
echo "`tput setaf 2`$1`tput sgr 0`\c"
}
echo "minishell test"
echo "echo -n bonjour" | ./minishell
|