Unix shell script find out which directory the script file resides?

前端 未结 16 2166
我寻月下人不归
我寻月下人不归 2020-12-02 03:14

Basically I need to run the script with paths related to the shell script file location, how can I change the current directory to the same directory as where the script fil

16条回答
  •  攒了一身酷
    2020-12-02 03:51

    If you're using bash....

    #!/bin/bash
    
    pushd $(dirname "${0}") > /dev/null
    basedir=$(pwd -L)
    # Use "pwd -P" for the path without links. man bash for more info.
    popd > /dev/null
    
    echo "${basedir}"
    

提交回复
热议问题