diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-29 19:37:04 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-29 19:37:04 +0100 |
| commit | 396f61a507c981bab6e26e2eecf5c1eeba2fd565 (patch) | |
| tree | 1103da84a64bbd42f2c1840c159f38a2d8917a61 /test.sh | |
| download | minishell-396f61a507c981bab6e26e2eecf5c1eeba2fd565.tar.gz minishell-396f61a507c981bab6e26e2eecf5c1eeba2fd565.tar.bz2 minishell-396f61a507c981bab6e26e2eecf5c1eeba2fd565.zip | |
Initial Commit
Diffstat (limited to 'test.sh')
| -rwxr-xr-x | test.sh | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#!/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" |
