OXIESEC PANEL
- Current Dir:
/
/
etc
/
profile.d
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/22/2024 08:17:32 AM
rwxr-xr-x
📄
01-locale-fix.sh
96 bytes
08/13/2020 06:59:47 PM
rw-r--r--
📄
Z97-byobu.sh
1.52 KB
12/04/2017 01:46:48 PM
rw-r--r--
📄
Z99-cloud-locale-test.sh
3.34 KB
08/27/2020 10:42:16 PM
rwxr-xr-x
📄
Z99-cloudinit-warnings.sh
873 bytes
08/27/2020 10:42:16 PM
rwxr-xr-x
📄
apps-bin-path.sh
835 bytes
02/18/2022 02:06:51 PM
rw-r--r--
📄
bash_completion.sh
664 bytes
04/02/2018 02:16:46 AM
rw-r--r--
📄
cedilla-portuguese.sh
1003 bytes
12/29/2015 10:57:42 AM
rw-r--r--
Editing: bash_completion.sh
Close
# Check for interactive bash and that we haven't already been sourced. if [ -n "${BASH_VERSION-}" -a -n "${PS1-}" -a -z "${BASH_COMPLETION_VERSINFO-}" ]; then # Check for recent enough version of bash. if [ ${BASH_VERSINFO[0]} -gt 4 ] || \ [ ${BASH_VERSINFO[0]} -eq 4 -a ${BASH_VERSINFO[1]} -ge 1 ]; then [ -r "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion" ] && \ . "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion" if shopt -q progcomp && [ -r /usr/share/bash-completion/bash_completion ]; then # Source completion code. . /usr/share/bash-completion/bash_completion fi fi fi