wiki:Shell

Shell

others

Get Current Path

#!/bin/bash

function get_current_path {
    SOURCE=${BASH_SOURCE[0]}
    DIR=$( dirname "$SOURCE" )
    if [ -h "$SOURCE" ]; then
        SOURCE=$(readlink "$SOURCE")
        [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
        DIR=$( cd -P "$( dirname "$SOURCE"  )" && pwd )
      else
        DIR=$( cd -P "$( dirname "$SOURCE" )" && pwd )
    fi
    echo $DIR
}

CI_DIR=$( get_current_path )
Last modified 12 months ago Last modified on 04/10/23 15:41:38