source:
clfs-embedded/bootscripts/clfs/rc.d/init.d/functions@
75a41b8
| Last change on this file since 75a41b8 was ae024d6, checked in by , 19 years ago | |
|---|---|
|
|
| File size: 227 bytes | |
| Rev | Line | |
|---|---|---|
| [a44b91b] | 1 | # Common Routines |
| 2 | # | |
| 3 | ||
| 4 | # Check status and print | |
| 5 | # OK or FAIL | |
| 6 | # | |
| 7 | check_status() | |
| 8 | { | |
| 9 | local ERR=$? | |
| 10 | echo -en "\\033[65G" | |
| 11 | if [ $ERR = 0 ]; then | |
| 12 | echo -en "\\033[1;32OK" | |
| 13 | else | |
| 14 | echo -en "\\033[1;31mFAIL" | |
| 15 | fi | |
| 16 | echo -e "\\033[0;39m" | |
| 17 | } |
Note:
See TracBrowser
for help on using the repository browser.
