repo.or.cz
/
amule.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
debian: fix build-deps for focal
[amule.git]
/
src
/
utils
/
scripts
/
MacOSX
/
defs-functions.sh
blob
27ba5f461a9b570298b9b4818475e6a3fe43eb72
1
# Some helper functions for scripts.
2
# (c) 2011 Angel Vidal ( kry@amule.org ))
3
# Public domain. Use at your own risk.
4
5
6
RED
=
"
\033
[1;31m"
7
BLUE
=
"
\033
[0;34m"
8
GREEN
=
"
\033
[0;36m"
9
NONE
=
"
\033
[0m"
10
11
function
pn
12
{
13
echo -e
$@
14
}
15
16
function
pc
17
{
18
echo -en
$1
19
shift
20
pn $@
21
echo -en
$NONE
22
}
23