mirror of
https://github.com/juewuy/ShellCrash.git
synced 2026-03-10 23:41:22 +00:00
17 lines
202 B
Bash
17 lines
202 B
Bash
|
|
content_line() {
|
|
printf '%b' "$1\n"
|
|
}
|
|
|
|
sub_content_line() {
|
|
content_line " $1"
|
|
}
|
|
|
|
separator_line() {
|
|
echo "-----------------------------------------------"
|
|
}
|
|
|
|
line_break() {
|
|
return
|
|
}
|