diff options
author | Dave Reisner <d@falconindy.com> | 2010-01-19 21:08:12 -0500 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-01-19 21:08:12 -0500 |
commit | 480d9996835339abaf954fa26296cf9a24bd1928 (patch) | |
tree | 84bc2e8ba5b6fe2bf85469bbcc26b0dfd3f45aa4 | |
parent | de0275de2371a5b57f45917ff988c256b9f97f23 (diff) | |
download | squashfu-480d9996835339abaf954fa26296cf9a24bd1928.tar.gz |
Implement warn() function in caution yellow
-rwxr-xr-x | squashfu | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -11,6 +11,10 @@ debug () { fi } +warn () { + printf '\033[1;33m::\033[1;m %s\n' "$*" +} + info () { printf '\033[1;34m::\033[1;m %s\n' "$*" } |