Quantcast
Channel: Jeremy Rothman-Shore Blog » iis
Viewing all articles
Browse latest Browse all 10

Kick off a Cygwin script from a windows bat file with a different working directory

$
0
0

I recently created a script that would pull the Tomcat log files from a group of web servers and then run my 95th percentile awk script to generate a summary of response times for the 100 most popular pages.  I wanted to run this as a nightly scheduled job so that I could have a report each day, but the job needed to run from a Windows machine.

Cygwin allows my linux script to run on a windows box, but I needed a way to kick off my Cygwin shell script.  After googling around I found some instructions on how to invoke a bash shell script through Cygwin from a command-line.  The bat file that starts up Cygwin is pretty simple:

1
2
3
4
5
6
@echo off

C:
chdir C:cygwinbin

bash --login -i

By creating your own version, you can use the “-c” switch for bash to have it execute your own shell script and then exit:

1
2
3
4
5
6
@echo off

C:
chdir C:cygwinbin

bash --login -i "/cygdrive/d/MyDirectory/MySubDirectory/my_script.sh"

This was a good start, but it left me with a new problem.  My shell script assumed that the working directory was the same directory it was in, and it expected to have various awk scripts and other support files to be locally available.  When my shell script was invoked by my bat file, the working directory was in the Cygwin startup folder, and my script was getting “file not found” errors.

I needed to modify my shell script so that it would change the working directory to be the directory the script was located in.  A bash shell script can figure out its own name using a special parameter, $0.  If the script is being executed from a different directory, then it will contain the path that was used.  For example, if I executed “MyDirectory/MySubDirectory/my_script.sh arg1 arg2”, then $0 would be “MyDirectory/MySubDirectory/my_script.sh”.

I can now use the “dirname” command, which will take a string with a path and just return the directory name.  So, if I call “dirname MyDirectory/MySubDirectory/my_script.sh”, it will output “MyDirectory/MySubDirectory”.

I can now put these pieces together to automatically change to the script’s local directory like this:

1
2
3
4
5
6
#!/bin/bash

# switch the working directory to the script's local directory
targetdir=$(dirname "$0")
echo $targetdir
cd "$targetdir"

UPDATE: Duncan Smart has made some nice enhancements to the Windows bat file portion of the script, creating a much more versatile script that pass along command line arguments and automatically handle path mapping.  



Viewing all articles
Browse latest Browse all 10

Trending Articles