Blame Automation/Modules/centos-art.sh-prepare/Scripts/prepare_getLinkName.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# prepare_getLinkName.sh -- This function standardizes link name
Alain Reguera Delgado 8f60cb
# construction. For the construction sake, two arguments are required,
Alain Reguera Delgado 8f60cb
# one to now the file's base directory, and another holding the file's
Alain Reguera Delgado 8f60cb
# absolute path. With this information, the base directory is removed
Alain Reguera Delgado 8f60cb
# from file's absolute path and the remaining path is transformed into
Alain Reguera Delgado 8f60cb
# a file name where each slash is converted into minus sign. 
Alain Reguera Delgado 8f60cb
# 
Alain Reguera Delgado 8f60cb
# For example, if the following information is provided:
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ARG1: /home/centos/artwork/Identity/Brushes
Alain Reguera Delgado 8f60cb
# ARG2: /home/centos/artwork/Identity/Brushes/Corporate/symbol.gbr
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# the result will be: `corporate-symbol.gbr'.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function prepare_getLinkName {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local LINK_BASEDIR=''
Alain Reguera Delgado 8f60cb
    local LINK_ABSPATH=''
Alain Reguera Delgado 8f60cb
    local LINK_CHARSEP=''
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define absolute path to link's base directory.
Alain Reguera Delgado 8f60cb
    LINK_BASEDIR="$1"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define absolute path to link's file.
Alain Reguera Delgado 8f60cb
    LINK_ABSPATH="$2"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define character used as word separator on file name.
Alain Reguera Delgado 8f60cb
    LINK_CHARSEP='-'
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Output link name.
Alain Reguera Delgado 8f60cb
    echo "$LINK_ABSPATH" | sed -r "s!^${LINK_BASEDIR}/!!" \
Alain Reguera Delgado 8f60cb
        | tr '[:upper:]' '[:lower:]' | sed -r "s!/!${LINK_CHARSEP}!g"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}