OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17210
/
etc
/
profile.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/02/2024 07:52:55 PM
rwxr-xr-x
📄
Z99-cloud-locale-test.sh
20 bytes
10/02/2024 07:51:09 PM
rwxr-xr-x
📄
Z99-cloudinit-warnings.sh
873 bytes
04/25/2023 09:28:48 PM
rwxr-xr-x
📄
bash_completion.sh
663 bytes
05/18/2016 09:19: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_COMPAT_DIR" ]; then # Check for recent enough version of bash. bash=${BASH_VERSION%.*}; bmajor=${bash%.*}; bminor=${bash#*.} if [ $bmajor -gt 4 ] || [ $bmajor -eq 4 -a $bminor -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 unset bash bmajor bminor fi