dugout-> shell_display_root.dugout
Define ENVIRONMENT display-operations for the root shell
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2020-2026 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## INSTANCE: shell_display_root.dugout
## MODIFIED: 2026/04/20
## OVERVIEW: Define ENVIRONMENT display-operations for the root shell
###############################################################################
## Default shell-linked Decoration Hooks
###############################################################################
## Conditional pretty stack
if [ -x /usr/bin/dircolors ]; then
pretty_dir
pretty_grep
fi
## Default pretty stack
pretty_curl
pretty_diff
pretty_ip
pretty_ls_root
pretty_MANPAGER
pretty_nano
pretty_ps_root
pretty_vdir
###############################################################################
## Not In Use: Uncomment for dynamic LINES and COLUMNS in bash
###############################################################################
#pretty_shopt
###############################################################################
## Conditionals
###############################################################################
## Conditionals
#if [ "$EUID" -ne "$SCRIPT_ACS_RUNNER_DUGOUT" ]; then
# ...
#else
# ...
#fi