i cannot give array declaration in shell script


 
Thread Tools Search this Thread
Operating Systems Solaris i cannot give array declaration in shell script
# 15  
Old 02-15-2008
Now i Can execute the script ...

Sir, Now i can execute the script ..Thanks a lot for u tip it really worked.

of changing mode to executable ...and Sir i have not renamed the script even though it executed.
# 16  
Old 02-15-2008
Now i Can execute the script ...

Sir, Now i can execute the script ..Thanks a lot for u tip it really worked.

of changing mode to executable ...and Sir i have not renamed the script even though it executed.

But Sir i have doubt y u have asked ptree $$ (process tree) to put before declare command. Cud explain me about that also.
# 17  
Old 02-15-2008
Now i Can execute the script ...

Sir, Now i can execute the script ..Thanks a lot for u tip it really worked.

of changing mode to executable ...and Sir i have not renamed the script even though it executed.

But Sir i have doubt y u have asked ptree $$ (process tree) to put before declare command. Cud you explain me about that also.
# 18  
Old 02-15-2008
Quote:
Originally Posted by naree
But Sir i have doubt y u have asked ptree $$ (process tree) to put before declare command. Cud you explain me about that also.
That was intended to help understanding why your script wasn't executed by the expected shell. I.e. for debugging purpose. Now it works, you can remove that line from your script.
# 19  
Old 02-16-2008
Sir can u elucidate it

Sir please Elucidate the use of ptree $$ .. in other purposes also.
# 20  
Old 02-19-2008
i want to list files modified 5 minutes back in solaris 9 or 10.

i have tired this command

find /data -type f -mmin 5 -print

but it is not working
# 21  
Old 02-19-2008
Quote:
Originally Posted by naree
find /data -type f -mmin 5 -print

but it is not working
This command works as designed.
I shows files modified exactly 5 minutes ago. I suspect you want 5 min and newer in such case that would be "-mmin -5"
Quote:
Sir please Elucidate the use of ptree $$ .. in other purposes also.
Ptree shows the hierarchy of processes, $$ means the current shell.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Global declaration of Array in Shell

Hi, Have assigned values in Array and iterating in while loop and would require values outside of the loop. But its returning NULL. could you please help us how to define Global array declaration in Unix shell scripting? i am using Kron shell. Thanks in advance. (2 Replies)
Discussion started by: periyasamycse
2 Replies

2. Shell Programming and Scripting

How to give password at run time in a shell script?

hi, how can i pass a password automatically when a shell script is running. i have shell script(runscript.sh) which call another shell script inside it as a different user. runscript.sh contains su - nemo -c "/bin/main_script.sh" but when i execute "runscript.sh" it try to run... (7 Replies)
Discussion started by: Little
7 Replies

3. UNIX for Dummies Questions & Answers

How to give multiple inputs to a shell script

Got struck while trying to write a shell script which should automatically give input. While running a script for eg: (adpatch.sh) It Prompts for Multiple inputs like: Do you currently have files used for installing or upgrading the database installed in this APPL_TOP ? need to give... (2 Replies)
Discussion started by: abdmoha
2 Replies

4. Shell Programming and Scripting

Array declaration in Shell script

this is my code declare -a USERCERT declare -a CACERT declare -a KEYSRC this is the error + declare -a USERCERT ./clone.sh: 1: declare: not found + declare -a CACERT ./clone.sh: 1: declare: not found + declare -a KEYSRC ./clone.sh: 1: declare: not found (11 Replies)
Discussion started by: xerox
11 Replies

5. Shell Programming and Scripting

Shell script to give broadcast and network address

Hello, I am running a post script in autoyast where I am trying to set the broadcast and network address. I have the ip address and netmask already (reading from a file).. I saw the post from fpmurphy but it is using ksh which isn't an option in autoyast. Thanks in advance! (3 Replies)
Discussion started by: bloodclot
3 Replies

6. UNIX for Dummies Questions & Answers

Array declaration problem

Hi all, I would like to declare a vector of variables and access them sequentially. Here is my code ARRAY_CT="0001000000 0000100000 0000010000" ELEMENTS_CT=${#ARRAY_CT} echo $ELEMENTS_CT for (( j=1;j<=$ELEMENTS_IS;j++)); do echo ${ARRAY_IS} done ... (2 Replies)
Discussion started by: f_o_555
2 Replies

7. Shell Programming and Scripting

Could someone give me an example of awk accessing array defined in Korn Shell?

As per title and much apprecieated! (2 Replies)
Discussion started by: biglau
2 Replies

8. Shell Programming and Scripting

Can give the input to prompt using shell script

Hi, I want to send input to promt from shell script, this thing is possible. I give the one command `/usr/share/ssl/misc/CA -newreq` it needs some user input like password etc., but i need this input also from shell script but it does not works. `/usr/share/ssl/misc/CA -newreq` <<EOF... (2 Replies)
Discussion started by: Vaibhav Agarwal
2 Replies

9. Shell Programming and Scripting

Array Declaration and For Loop

I am just stucked in syntax.This is more like a array and for loop problem. I want to use ls -l command and get filezise and filename of all filenames in the directory in an array (say array#1). After 2 minutes of sleep, i want to get the same information in another array (say array#2). The... (4 Replies)
Discussion started by: 33junaid
4 Replies

10. Shell Programming and Scripting

how to give a variable to a command in shell script...

hi all... I am executing a comman in a shell script but the command needs a user input of character 'y' as input so it stops in between...may i know is there is any way of giving that character as input in the shell script itself???...thanks in advance.... (6 Replies)
Discussion started by: santy
6 Replies
Login or Register to Ask a Question