How can I determine the name of the bash script file inside the script itself?
Like if my script is in file runme.sh, than how would I make it to display "You are running runme.sh" message without hardcodding that?
Thanks,
|
For reading through a symlink, which is usually not what you want (you usually don't want to confuse the user this way), try:
IMO, that'll produce confusing output. "I ran foo.sh, but it's saying I'm running bar.sh!? Must be a bug!" Besides, one of the purposes of having differently-named symlinks is to provide different functionality based on the name it's called as (think gzip and gunzip on some platforms). |
|||||||||||||||||||
|
|
With bash >= 3 the following works:
|
|||||||||||||||
|
# ------------- SCRIPT ------------- #
|
|||||
|
|
If the script name has spaces in it, a more robust way is to use |
|||||||||||||
|
|
To answer Chris Conway, on Linux (at least) you would do this:
readlink prints out the value of a symbolic link. If it isn't a symbolic link, it prints the file name. -n tells it to not print a newline. -f tells it to follow the link completely (if a symbolic link was a link to another link, it would resolve that one as well). |
|||||
|
|
These answers are correct for the cases they state but there is a still a problem if you run the script from another script using the 'source' keyword (so that it runs in the same shell). In this case, you get the $0 of the calling script. And in this case, I don't think it is possible to get the name of the script itself. This is an edge case and should not be taken TOO seriously. If you run the script from another script directly (without 'source'), using $0 will work. |
|||||
|
|
$BASH_SOURCE gives the correct answer when sourcing the script. This however includes the path so to get the scripts filename only, use $(basename $BASH_SOURCE) |
|||
|
|
|
If you want it without the path then you would use |
|||||||||
|
|
Re: Tanktalus's (accepted) answer above, a slightly cleaner way is to use:
If your script has been sourced from another bash script, you can use:
I agree that it would be confusing to dereference symlinks if your objective is to provide feedback to the user, but there are occasions when you do need to get the canonical name to a script or other file, and this is the best way, imo. |
|||
|
|
|
You can use $0 to determine your script name (with full path) - to get the script name only you can trim that variable with
|
|||
|
|
|
$ cat script.sh #! /bin/sh echo `basename $0` $ ./script.sh script.sh $ ln script.sh linktoscript $ ./linktoscript linktoscript How does one get [EDIT] Per @ephemient in comments above, though the symbolic link thing may seem contrived, it is possible to fiddle with |
|||||||||
|
i got the above from another stackoverflow question... can a bash script tell what directory its in but i think it's usefull for this topic as well |
|||
|
|
This resolves symbolic links (realpath does that), handles spaces (double quotes do this), and will find the current script name even when sourced (. ./myscript) or called by other scripts ($BASH_SOURCE handles that). After all that, it is good to save this in a environment variable for re-use or for easy copy elsewhere (this=)... |
|||
|
|