mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-21 23:44:30 +00:00
7 lines
188 B
Bash
7 lines
188 B
Bash
#!/bin/bash
|
|
|
|
GREEN='\033[0;32m'
|
|
NC='\033[0m' # No Color
|
|
echo -e "${GREEN}########################${NC}"
|
|
echo -e "${GREEN} ${1} ${NC}"
|
|
echo -e "${GREEN}########################${NC}"
|