ablfs-more
trunk
Last change
on this file since 875366f was fd4a798, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago |
Remove $Id$ comments, they are useless with git
|
-
Property mode
set to
100644
|
File size:
916 bytes
|
Line | |
---|
1 | #####
|
---|
2 | #
|
---|
3 | # common constants
|
---|
4 | #
|
---|
5 | #####
|
---|
6 |
|
---|
7 |
|
---|
8 | # VT100 colors
|
---|
9 | declare -r BLACK=$'\e[1;30m'
|
---|
10 | declare -r DK_GRAY=$'\e[0;30m'
|
---|
11 |
|
---|
12 | declare -r RED=$'\e[31m'
|
---|
13 | declare -r GREEN=$'\e[32m'
|
---|
14 | declare -r YELLOW=$'\e[33m'
|
---|
15 | declare -r BLUE=$'\e[34m'
|
---|
16 | declare -r MAGENTA=$'\e[35m'
|
---|
17 | declare -r CYAN=$'\e[36m'
|
---|
18 | declare -r WHITE=$'\e[37m'
|
---|
19 |
|
---|
20 | declare -r OFF=$'\e[0m'
|
---|
21 | declare -r BOLD=$'\e[1m'
|
---|
22 | declare -r REVERSE=$'\e[7m'
|
---|
23 | declare -r HIDDEN=$'\e[8m'
|
---|
24 |
|
---|
25 | declare -r tab_=$'\t'
|
---|
26 | declare -r nl_=$'\n'
|
---|
27 |
|
---|
28 | declare -r DD_BORDER="${BOLD}==============================================================================${OFF}"
|
---|
29 | declare -r SD_BORDER="${BOLD}------------------------------------------------------------------------------${OFF}"
|
---|
30 | declare -r STAR_BORDER="${BOLD}******************************************************************************${OFF}"
|
---|
31 |
|
---|
32 | # bold yellow > < pair
|
---|
33 | declare -r R_arrow=$'\e[1;33m>\e[0m'
|
---|
34 | declare -r L_arrow=$'\e[1;33m<\e[0m'
|
---|
Note:
See
TracBrowser
for help on using the repository browser.