Blame tcar-scripts-tuneup/Modules/Sh/sh_setVariableNames.sh

Alain Reguera Delgado b29c5b
#!/bin/bash
Alain Reguera Delgado b29c5b
######################################################################
Alain Reguera Delgado b29c5b
#
Alain Reguera Delgado b29c5b
#   sh_setVariableNames.sh -- This function standardizes presentation
Alain Reguera Delgado b29c5b
#   of variable's names inside shell scripts.
Alain Reguera Delgado b29c5b
#
Alain Reguera Delgado b29c5b
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado b29c5b
#
Alain Reguera Delgado b29c5b
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado b29c5b
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado b29c5b
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado b29c5b
# your option) any later version.
Alain Reguera Delgado b29c5b
#
Alain Reguera Delgado b29c5b
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado b29c5b
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado b29c5b
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado b29c5b
# General Public License for more details.
Alain Reguera Delgado b29c5b
#
Alain Reguera Delgado b29c5b
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado b29c5b
# along with this program; if not, write to the Free Software
Alain Reguera Delgado b29c5b
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado b29c5b
#
Alain Reguera Delgado b29c5b
######################################################################
Alain Reguera Delgado b29c5b
Alain Reguera Delgado b29c5b
function sh_setVariableNames {
Alain Reguera Delgado b29c5b
Alain Reguera Delgado b29c5b
    local -a COMMANDS
Alain Reguera Delgado b29c5b
Alain Reguera Delgado b29c5b
    # Write non-array variable names all in upper case and between
Alain Reguera Delgado b29c5b
    # brackets. For example: ${VARIABLE} -> ${VARIABLE}
Alain Reguera Delgado b29c5b
    COMMANDS[++((${#COMMANDS[*]}))]='s/\$(\w+\b|@)/${\U\1}/g'
Alain Reguera Delgado b29c5b
Alain Reguera Delgado b29c5b
    for COMMAND in ${COMMANDS[*]};do
Alain Reguera Delgado b29c5b
        sed -r -i ${COMMAND} ${FILE}
Alain Reguera Delgado b29c5b
    done
Alain Reguera Delgado b29c5b
Alain Reguera Delgado b29c5b
}