When I am trying to execute a file(name.sh) in the command line by the command ./name.sh , I am getting the error that:
"." is not recognized as an internal or external command, operable or batch file
please help me execute the .sh file
|
When I am trying to execute a file(name.sh) in the command line by the command ./name.sh , I am getting the error that:
please help me execute the .sh file |
||||
|
|
|
You're on Windows CMD.EXE (from the error message). It uses a different syntax to execute commands. You'll need to use To clarify, Windows does not have a built-in utility to support .sh files. To run such, you'll need to install a third-party tool such as Cygwin. |
|||||
|
|
Windows doesn't natively run |
|||
|
|
|
You are trying to run a Linux command at the Windows Command Prompt. On Linux the forward slash is a path separater. On Windows the backslash is a path separator and the forward slash generally indicates an argument. Therefore, Windows thinks you are trying to run a command called "." and parsing it the argument "/name.sh". The correct convention would be ".\name.sh". Additionally Windows will automatically search the current directory for your command so you could just type "name.sh". The next problem you will face is that Windows does not know what a sh script is, again this is a Linux thing. You could solve this by installing Cygwin if you really want or need to run a sh script. However, judging by one of your previous comments you could just as well rename the script to name.bat and delete the "#!/bin/sh" line. Now you have a Batch file which Windows should understand. You can read more about batch files here. |
|||
|
|
|
Alternatively you could turn to the dark side and install Linux. From the prompt:
or
Your program will run and you will have a better system as well. |
||||
|
|
|
You're trying to run your car on orange juice instead of gasoline. Windows shares similar commands stored in .bat or .cmd files with Unix/Linux/zOS Unix Subsystem/*ix shell scripts as these two families of operating systems share a common ancestor the DEC PDP-x machines. If you want instant gratification, you will need to install an environment that provides a "sh.exe" program or "csh.exe" or "bash.exe" program (tsh.exe anyone?) Alternatively, if you know Unix script commands, very well, and you know Windows .cmd and .bat file commands, very well, you can translate the .sh file into a .bat or .cmd file. Even so, you will often encounter more Unix-styled programs that have no equivalent under Windows--grep, sed, vi, emacs, etc. Thus, the call to install CygWin (no minimalist)--just to get the shell and Unix tools. Put it on a flash-drive, for these special occasions. |
|||
|
|
|
Someone said something about MS-DOS using
Has no difference in effect. Yes, it is not true for all operations – the actual answer is simply No, or without Cygwin or SSHD you can't. I only know because I stupidly spent half a day trying to figure out what |
||||
|
|
|
It's possible that the problem is actually within the file So: does |
|||
|
|
ok, there's a LOT wrong with that - drop the #!/bin/sh, and change the extention to bat, and it might work with a few more fixes. Then you can just invoke it by its filename as well. The syntax of a unix shell script, and a windows batch file arn't too similar. cygwin, or a load of messing around with unxutils might make something that would work in both, but unless you're ABSOLUTELY sure the environment is always the same, it isn't worth the headache |
|||||||
|
|
If you have a Linux box in your home (or work) and plugged to the same network, and this network is safe, this might do the trick: |
|||
|
|