vote up 11 vote down star
1

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,

flag

75% accept rate
Thanks for the question (been in the back of my mind for some time, just never been pressed enough to really need it) - This is what makes SO great - I've yet to visit it and not learn something useful each time. – slashmais Oct 10 '08 at 17:37

10 Answers

vote up 19 vote down check
me=`basename $0`

For reading through a symlink, which is usually not what you want (you usually don't want to confuse the user this way), try:

me="$(basename "$(test -L "$0" && readlink "$0" || echo "$0")")"

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).

link|flag
1  
Nice flourish with the basename there. – dmckee Oct 10 '08 at 17:23
$0 gives you the name via which the script was invoked, not the real path of the actual script file. – Chris Conway Oct 10 '08 at 17:48
It works unless you're being called via symlink. But, even then, it's usually what you want anyway, IME. – Tanktalus Oct 10 '08 at 17:50
You can be called by a name that doesn't exist as a file at all -- most common example, calling sh as "-/bin/sh" causes it to act as a login shell. See exec -a in Bash, or execvp("/bin/foo", {"blah", ...}). – ephemient Oct 10 '08 at 18:48
Yes, that's a better example. – Chris Conway Oct 10 '08 at 21:06
show 1 more comment
vote up 1 vote down

With bash >= 3:

$ ./s
$0 is: ./s
$BASH_SOURCE is: ./s
$ . ./s
$0 is: bash
$BASH_SOURCE is: ./s

$ cat s
#!/bin/bash

printf '$0 is: %s\n$BASH_SOURCE is: %s\n' "$0" "$BASH_SOURCE
link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Those were very helpful answers,
Thanks

link|flag
vote up 2 vote down

If you want it without the path then you would use ${0##*/}

link|flag
+1 So you read the bash man page too, huh? – guns Mar 12 at 15:40
You better believe it! I do this sort of stuff all the time. – Mr. Muskrat Mar 12 at 19:45
vote up 2 vote down

To answer Chris Conway, on Linux (at least) you would do this:

echo $(basename $(readlink -nf $0))

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).

link|flag
vote up 1 vote down

$0 doesn't answer the question (as I understand it). A demonstration:

$ cat script.sh
#! /bin/sh
echo `basename $0`
$ ./script.sh 
script.sh
$ ln script.sh linktoscript
$ ./linktoscript 
linktoscript

How does one get ./linktoscript to print out script.sh?

[EDIT] Per @ephemient in comments above, though the symbolic link thing may seem contrived, it is possible to fiddle with $0 such that it does not represent a filesystem resource. The OP is a bit ambiguous about what he wanted.

link|flag
added answer to this to my answer above, but I disagree that this is what's really wanted (or that you should want it, barring some extenuating circumstances that I can't currently fathom) – Tanktalus Oct 10 '08 at 18:03
I think that printing linktoscript instead of script.sh is a feature, not a bug. Several unix commands use their name for altering their behaviour. An example is vi/ex/view. – mouviciel Mar 12 at 16:54
vote up 11 vote down

If the script name has spaces in it, a more robust way is to use "$0" or "$(basename "$0")" to prevent the name from getting mangled or interpreted in any way. In general, it is good practice to always quote variable names in the shell.

link|flag
(Better answer then the one thats getting all the votes!) – slashmais Oct 10 '08 at 17:40
2  
(Agreed! But why are we talking parenthetically?) – ephemient Oct 10 '08 at 17:46
1  
(IME, it's rare that it's important, which is why my answer didn't bother with the quotes.) – Tanktalus Oct 10 '08 at 17:51
vote up 2 vote down

You can use $0 to determine your script name (with full path) - to get the script name only you can trim that variable with

basename $0
link|flag
vote up 0 vote down

echo "You are running $0"

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.