If you have not eXcute priviledge in the script file, then you need start the interpreter like sh and input is readed from file (arg 1).
If your input file not include needed interpreter then it's more safety to tell which interpreter need to use.
If PATH not include dot (current directory), then you need tell the path to find the command.
Ex. a.sh
But if your command shell is not bash or ksh in previous example, you have ex. csh or dash shell, then you get error. Your shell can't run previous script - syntax error.
=>
Or add interpereter to the 1st line and give the execute priv.
Then it works always in any user shell. No need to take care of users shell.
Some of us has idea that when you develop something, it's not executable
=> need use
Or you don't like to tell that this file is shell script, ex. you have file
readme.txt
but it include something code, then you and only you know that it's include some script for some interpreter.
Hi Gurus,
The following script fails with the error 'command not found' while trying to execute. As the error indicates, the script fails at ROW#30 where the EOF is defined for SQL statement.
It appears that the script is trying execute the lines in the SQL output written to ta spool file.... (7 Replies)
Hi All,
I wanted to know why we use the '-f' option while executing script.
in my case...
abcd.sh -f any_evts 02 2014
abcd = Scriptname
-f = dont know
any_evts = Some file or string
02= month
2014 = year
So in above pleas ehelp to understand here -f and other arguement like... (1 Reply)
Hello All,
Is there a way that I can have wrapper place in my desktop and when I run it, it connect with my server and do the action.
If this can happen, Can I know how to get started
Thanks (3 Replies)
Hello,
I created a sql file to create a Procedure, and it was successfully created.
I created a sql file to execute the procedure, and it did without any errors, but i dont see the data been updated.
The Execute procedure.sql script is:
BEGIN
set serveroutput on size 1000000
execute... (5 Replies)
Whats the difference between executing a file such as test.sh as:
./test.sh
as apposed to
sh test.sh
i've noticed that a simple while loop will not execute for the 2nd way of doing it, but will for the first. Also what do you guys all recom (6 Replies)
Hi All,
I have a requirement to mv a file in unix from plsql procedure.
for that i have created a java host procedure, a host_command, given all grants as per ORACLE-BASE - Oracle8i Shell Commands From PL/SQL
but i am getting an error ""Process err :/bin/sh: mv Not Found""
kindly let me... (1 Reply)
I need to execute a shell script kept in unix machine from windows. User id, password area available.
For eg.
There's a shell script wich moves all the logs kept in my home directory to a directory named LOGS.
Now i need to get this done through windows; either using a batch file, or java... (4 Replies)
I am trying to run a shell script using the ./<ScriptName> command, but the server returns an error bash: ./Script1.sh: Permission denied
What variable do I need to set to avoid this? (4 Replies)
Hi,
I am trying to execute the below shell script: script name(ss1).
ss1 was given permission - 744 before executing.
name: ss1
#ss1
#usage:ss1
ls
who
pwd
:wq
I tried to execute $ss1 (Enter)
Its not executing.... It says that ss1 is not found:
echo $SHELL. The o/put i got is... (5 Replies)