tags:

views:

44

answers:

2

Using Git Bash on Windows, if I create a bash script, where do I put it so that I can access it from the bash shell?

Basically, I want to create a bash shell script that does some stuff with files etc.

I want to invoke the function from inside the bash with some parameters, and the script will then do its work.

I am completely new to this environment, so my knowledge of bash is very limited.

Thanks in advance.

A: 

You can put it in /bin which is equivalent to C:\Program Files\Git\bin (or similar, depending on where you installed git).

svick
A: 

Well, you can put it anywhere you want. But for ease of use, you might want to put it in your home directory. To find it, open up Git Bash and type the following:

cd ~
pwd

It should return something like /c/Documents and Settings/username (or /c/Users/username). In Windows terminology, that it at "C:\Documents and Settings\username" as you would expect.

ewall
So does it need to be named something in particular, or it executed similarly to a BAT file ?
Matthew
Naming shouldn't matter. However, usually the first line of the file points to the shell that executes it, so in this case the first line should be `#!/bin/bash`. Also, there's a chance you may need to mark the file as executable with the command `chmod a+x scriptname`, but it's not likely to be necessary here.
ewall