OXIESEC PANEL
- Current Dir:
/
/
etc
/
profile.d
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/06/2025 05:57:38 AM
rwxr-xr-x
📄
bash_completion.sh
664 bytes
10/11/2019 11:19:34 PM
rw-r--r--
📄
colorgrep.csh
196 bytes
08/12/2018 07:47:56 AM
rw-r--r--
📄
colorgrep.sh
201 bytes
08/12/2018 07:47:56 AM
rw-r--r--
📄
colorls.csh
1.7 KB
04/01/2023 06:22:20 AM
rw-r--r--
📄
colorls.sh
1.57 KB
04/01/2023 06:22:20 AM
rw-r--r--
📄
colorsysstat.csh
69 bytes
10/15/2023 05:46:46 AM
rw-r--r--
📄
colorsysstat.sh
56 bytes
10/15/2023 05:46:46 AM
rw-r--r--
📄
colorxzgrep.csh
162 bytes
06/14/2022 12:58:42 PM
rw-r--r--
📄
colorxzgrep.sh
183 bytes
06/14/2022 12:58:42 PM
rw-r--r--
📄
colorzgrep.csh
216 bytes
04/20/2022 11:03:05 AM
rw-r--r--
📄
colorzgrep.sh
220 bytes
04/20/2022 11:03:05 AM
rw-r--r--
📄
crontab.sh
175 bytes
03/16/2023 06:37:24 PM
rw-r--r--
📄
csh.local
80 bytes
05/15/2023 02:46:40 PM
rw-r--r--
📄
debuginfod.csh
674 bytes
04/06/2024 01:39:26 PM
rw-r--r--
📄
debuginfod.sh
596 bytes
04/06/2024 01:39:26 PM
rw-r--r--
📄
gawk.csh
1.08 KB
12/14/2017 05:53:45 PM
rw-r--r--
📄
gawk.sh
757 bytes
12/14/2017 05:53:45 PM
rw-r--r--
📄
golang.sh
138 bytes
08/12/2024 06:24:55 PM
rw-r--r--
📄
lang.csh
2.43 KB
05/15/2023 02:46:40 PM
rw-r--r--
📄
lang.sh
2.26 KB
05/15/2023 02:46:40 PM
rw-r--r--
📄
less.csh
500 bytes
07/02/2024 07:57:10 PM
rw-r--r--
📄
less.sh
253 bytes
07/02/2024 07:57:10 PM
rw-r--r--
📄
mc.csh
49 bytes
10/18/2019 08:38:39 PM
rw-r--r--
📄
mc.sh
153 bytes
10/18/2019 08:38:39 PM
rw-r--r--
📄
modules.csh
105 bytes
10/14/2023 06:46:13 PM
rw-r--r--
📄
modules.sh
448 bytes
10/14/2023 06:46:13 PM
rw-r--r--
📄
scl-init.csh
284 bytes
08/25/2017 08:23:02 AM
rw-r--r--
📄
scl-init.sh
637 bytes
08/25/2017 08:23:02 AM
rw-r--r--
📄
sh.local
81 bytes
05/15/2023 02:46:40 PM
rw-r--r--
📄
vim.csh
106 bytes
08/02/2022 04:57:00 PM
rw-r--r--
📄
vim.sh
248 bytes
08/02/2022 04:57:00 PM
rw-r--r--
📄
which2.csh
120 bytes
10/15/2023 02:13:47 AM
rw-r--r--
📄
which2.sh
540 bytes
10/15/2023 02:13:47 AM
rw-r--r--
Editing: colorls.sh
Close
# color-ls initialization # Skip all for noninteractive shells. [ ! -t 0 ] && return #when USER_LS_COLORS defined do not override user LS_COLORS, but use them. if [ -z "$USER_LS_COLORS" ]; then alias ll='ls -l' 2>/dev/null alias l.='ls -d .*' 2>/dev/null INCLUDE= COLORS= for colors in "$HOME/.dir_colors.$TERM" "$HOME/.dircolors.$TERM" \ "$HOME/.dir_colors" "$HOME/.dircolors"; do [ -e "$colors" ] && COLORS="$colors" && \ INCLUDE="`/usr/bin/cat "$COLORS" | /usr/bin/grep '^INCLUDE' | /usr/bin/cut -d ' ' -f2-`" && \ break done [ -z "$COLORS" ] && [ -e "/etc/DIR_COLORS.$TERM" ] && \ COLORS="/etc/DIR_COLORS.$TERM" [ -z "$COLORS" ] && [ -e "/etc/DIR_COLORS.256color" ] && \ [ "x`/usr/bin/tty -s && /usr/bin/tput colors 2>/dev/null`" = "x256" ] && \ COLORS="/etc/DIR_COLORS.256color" [ -z "$COLORS" ] && [ -e "/etc/DIR_COLORS" ] && \ COLORS="/etc/DIR_COLORS" # Existence of $COLORS already checked above. [ -n "$COLORS" ] || return if [ -e "$INCLUDE" ]; then TMP="`/usr/bin/mktemp .colorlsXXX -q --tmpdir=/tmp`" [ -z "$TMP" ] && return /usr/bin/cat "$INCLUDE" >> $TMP /usr/bin/grep -v '^INCLUDE' "$COLORS" >> $TMP eval "`/usr/bin/dircolors --sh $TMP 2>/dev/null`" /usr/bin/rm -f $TMP else eval "`/usr/bin/dircolors --sh $COLORS 2>/dev/null`" fi [ -z "$LS_COLORS" ] && return /usr/bin/grep -qi "^COLOR.*none" $COLORS >/dev/null 2>/dev/null && return fi unset TMP COLORS INCLUDE alias ll='ls -l --color=auto' 2>/dev/null alias l.='ls -d .* --color=auto' 2>/dev/null alias ls='ls --color=auto' 2>/dev/null