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.csh
Close
# skip everything for non-interactive shells if (! $?prompt) exit # color-ls initialization if ( $?USER_LS_COLORS ) then if ( "$USER_LS_COLORS" != "" ) then #when USER_LS_COLORS defined do not override user #specified LS_COLORS and use them goto finish endif endif alias ll 'ls -l' alias l. 'ls -d .*' set COLORS=/etc/DIR_COLORS if ($?TERM) then if ( -e "/etc/DIR_COLORS.256color" ) then if ( "`/usr/bin/tput colors`" == "256" ) then set COLORS=/etc/DIR_COLORS.256color endif endif if ( -e "/etc/DIR_COLORS.$TERM" ) then set COLORS="/etc/DIR_COLORS.$TERM" endif endif if ( -f ~/.dircolors ) set COLORS=~/.dircolors if ( -f ~/.dir_colors ) set COLORS=~/.dir_colors if ($?TERM) then if ( -f ~/.dircolors."$TERM" ) set COLORS=~/.dircolors."$TERM" if ( -f ~/.dir_colors."$TERM" ) set COLORS=~/.dir_colors."$TERM" endif set INCLUDE="`/usr/bin/cat "$COLORS" | /usr/bin/grep '^INCLUDE' | /usr/bin/cut -d ' ' -f2-`" if ( ! -e "$COLORS" ) exit set _tmp="`/usr/bin/mktemp .colorlsXXX -q --tmpdir=/tmp`" #if mktemp fails, exit when include was active, otherwise use $COLORS file if ( "$_tmp" == '' ) then if ( "$INCLUDE" == '' ) then eval "`/usr/bin/dircolors -c $COLORS`" endif goto cleanup endif if ( "$INCLUDE" != '' ) /usr/bin/cat "$INCLUDE" >> $_tmp /usr/bin/grep -v '^INCLUDE' "$COLORS" >> $_tmp eval "`/usr/bin/dircolors -c $_tmp`" /usr/bin/rm -f $_tmp if ( "$LS_COLORS" == '' ) exit cleanup: set color_none=`/usr/bin/sed -n '/^COLOR.*none/Ip' < $COLORS` if ( "$color_none" != '' ) then unset color_none exit endif unset color_none unset _tmp unset INCLUDE unset COLORS finish: alias ll 'ls -l --color=auto' alias l. 'ls -d .* --color=auto' alias ls 'ls --color=auto'