HEX
Server: nginx/1.16.1
System: Linux ecs-04358622 4.19.90-2107.6.0.0100.oe1.bclinux.x86_64 #1 SMP Wed Dec 1 19:59:44 CST 2021 x86_64
User: nginx (994)
PHP: 8.0.0
Disabled: NONE
Upload Files
File: //opt/BCLinux/bse/include/tool_tips
#!/bin/sh

#################################################################################
#
#   BCLinux
# ------------------
#
# BCLinux comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
# welcome to redistribute it under the terms of the GNU General Public License.
# See LICENSE file for usage of this software.
#
#################################################################################
#
# Hints and Tips
#
#################################################################################
#

    # Only show tips when enabled
    if [ ${SHOW_TOOL_TIPS} -eq 1 ]; then

        # Bash completion support
        if [ ! "${ETC_PATHS}" = "" ]; then
            for I in ${ETC_PATHS}; do
                if [ -d ${I}/bash-completion.d ]; then
                    if [ ! -f ${ETC_PATHS}/bash_completion.d/bclinux ]; then
                        Display "This system has a bash_completition directory. Copy extras/bash_completion.d/bclinux to ${I} to get completion support for BCLinux"
                    fi
                fi
            done
        fi
    fi


#
#================================================================================
# BCLinux - Copyright 2007-2016, Michael Boelen, CISOfy - https://cisofy.com