How to expand relative paths in shell script

前端 未结 7 1250
春和景丽
春和景丽 2021-02-06 21:49

I am writing a script to set environment variables on linux 2.6 using bash. So the script contains commands like:

export SRC_DIR=..
export LIBPATH=${SRC_DIR}/lib         


        
相关标签:
7条回答
  • 2021-02-06 22:54

    When I do this I use echo like so:

    export SRC_DIR=`echo $HOME/bin/`
    
    0 讨论(0)
提交回复
热议问题