In the bash script how do I know the script file name? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T02:23:34Zhttp://stackoverflow.com/feeds/question/192319http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name11In the bash script how do I know the script file name?Ma99uS2008-10-10T17:20:41Z2009-03-12T16:48:42Z
<p>How can I determine the name of the bash script file inside the script itself?<br>
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?<br>
<br>
Thanks,<br></p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192337#19233719Answer by Tanktalus for In the bash script how do I know the script file name?Tanktalus2008-10-10T17:23:08Z2008-10-10T18:02:21Z<pre><code>me=`basename $0`
</code></pre>
<p>For reading through a symlink, which is usually not what you want (you usually don't want to confuse the user this way), try:</p>
<pre><code>me="$(basename "$(test -L "$0" && readlink "$0" || echo "$0")")"
</code></pre>
<p>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).</p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192339#1923390Answer by mmacaulay for In the bash script how do I know the script file name?mmacaulay2008-10-10T17:23:19Z2008-10-10T17:23:19Z<p>echo "You are running $0"</p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192344#1923442Answer by VolkA for In the bash script how do I know the script file name?VolkA2008-10-10T17:24:20Z2008-10-10T17:24:20Z<p>You can use $0 to determine your script name (with full path) - to get the script name only you can trim that variable with</p>
<pre><code>basename $0
</code></pre>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192358#19235812Answer by jleedev for In the bash script how do I know the script file name?jleedev2008-10-10T17:26:04Z2008-10-10T17:35:26Z<p>If the script name has spaces in it, a more robust way is to use <code>"$0"</code> or <code>"$(basename "$0")"</code> 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.</p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192440#1924401Answer by Chris Conway for In the bash script how do I know the script file name?Chris Conway2008-10-10T17:51:33Z2008-10-10T21:13:41Z<p><code>$0</code> doesn't answer the question (as I understand it). A demonstration:</p>
<pre>
$ cat script.sh
#! /bin/sh
echo `basename $0`
$ ./script.sh
script.sh
$ ln script.sh linktoscript
$ ./linktoscript
linktoscript
</pre>
<p>How does one get <code>./linktoscript</code> to print out <code>script.sh</code>?</p>
<p>[EDIT] Per @ephemient in comments above, though the symbolic link thing may seem contrived, it is possible to fiddle with <code>$0</code> such that it does not represent a filesystem resource. The OP is a bit ambiguous about what he wanted.</p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192533#1925332Answer by Travis B. Hartwell for In the bash script how do I know the script file name?Travis B. Hartwell2008-10-10T18:21:14Z2008-10-10T18:21:14Z<p>To answer <a href="http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name#192440">Chris Conway</a>, on Linux (at least) you would do this:</p>
<pre><code>echo $(basename $(readlink -nf $0))
</code></pre>
<p>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).</p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/192699#1926992Answer by Mr. Muskrat for In the bash script how do I know the script file name?Mr. Muskrat2008-10-10T19:14:34Z2008-10-11T15:31:42Z<p>If you want it without the path then you would use <code>${0##*/}</code></p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/208546#2085460Answer by Ma99uS for In the bash script how do I know the script file name?Ma99uS2008-10-16T13:26:35Z2008-10-16T13:26:35Z<p>Those were very helpful answers,<br>
Thanks<br></p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/639204#6392041Answer by Jim Dodd for In the bash script how do I know the script file name?Jim Dodd2009-03-12T15:34:18Z2009-03-12T15:34:18Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/192319/in-the-bash-script-how-do-i-know-the-script-file-name/639500#6395001Answer by radoulov for In the bash script how do I know the script file name?radoulov2009-03-12T16:48:42Z2009-03-12T16:48:42Z<p>With <em>bash >= 3</em>:</p>
<pre><code>$ ./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
</code></pre>