scripting problem


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting scripting problem
# 1  
Old 09-19-2006
scripting problem

Sorry everyone, i was able to fix it

Last edited by bebop1111116; 09-19-2006 at 10:00 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

scripting problem

Hi I am doing scripting using EXPECT module. I have successfully created the code through which i can login automatically #!/usr/bin/expect spawn ssh 127.0.0.1 expect "abc@127.0.0.1's password:" send "xyz\r" now i want to create directory #!/usr/bin/expect spawn ssh... (0 Replies)
Discussion started by: esumiba
0 Replies

2. UNIX for Dummies Questions & Answers

scripting problem

HI -rw-r--r-- 1 synapse synapse 5242816 Jan 14 22:02 SMSCLOG.25 -rw-r--r-- 1 synapse synapse 1224138 Jan 14 22:14 SMSCLOG.26 below is the file which are generated after every 10 mins i am trynig do scripting in which latest generated file get cta and give ouput I use the below code ... (1 Reply)
Discussion started by: esumiba
1 Replies

3. Shell Programming and Scripting

Help me solve this scripting problem please

Hello, I would really appreciate some help into approaching this problem: - i have a random txt file with x lines and y rows following this pattern: ex: ip1 | user1 | command ip2 | user2 | command ip3 | user3 | command - i need to telnet/ssh into these ip's, login with... (7 Replies)
Discussion started by: catalinstk
7 Replies

4. Shell Programming and Scripting

Scripting problem

I have one table contains the last field is gender and it is entered in small letter ,i would like to convert to caps after checking the field? eg: eno ename loc gender 1 a ch f 2 b hy M 3 c hy m 4 d ... (1 Reply)
Discussion started by: mrbinoy
1 Replies

5. Shell Programming and Scripting

Scripting Problem

Hello guys, I am a newbie to Shell Scripting. I have an issue. My requirement is to search a pattern in a file and then replace it with another pattern. Please note that I have thousands of files having the same pattern and I have to replace it running a script. I have created a script as shown... (4 Replies)
Discussion started by: mahesh_raghu
4 Replies

6. UNIX for Dummies Questions & Answers

Scripting Problem

Hi, I would like to ask for your help. You see i created a script that runs based on user input. Upon running i encountered an error saying "ksh: syntax error: `else' unmatched". I am quite new to UNIX and to scripting as well. below is my script which created to do this: #!... (1 Reply)
Discussion started by: Knowledge_Xfer
1 Replies

7. Shell Programming and Scripting

scripting problem

I am trying to write a script that tells us whether the permissions for two files, whose names should be given as arguments to the script, are identical. And if the permissions for the two files are identical, have to output the common permission field. or else output each filename, followed by... (0 Replies)
Discussion started by: manojrsb
0 Replies

8. UNIX for Advanced & Expert Users

scripting problem

hI I m very new to unix ,... I m facing an issue I have to search though a list of directorys, find all .gz files which are older than 7 days and delete that ,,, Any one knows a single command to do this .. Thnks in advance BInu (3 Replies)
Discussion started by: msbinu
3 Replies

9. Shell Programming and Scripting

scripting problem

I hv the below script , that is work fine on unix sytem ( ksh ) , but it is not work in my RH system , the script can kill the idle user who have idel for 120 minutes but exclude the user in the exception.lst the error happen when run the statemnt " (( time = $TIMEOU + 1 )) " , could suggest... (3 Replies)
Discussion started by: ust
3 Replies

10. Shell Programming and Scripting

Scripting problem

I'm hoping one of you scripting experts can help me. I'm trying to find out the IP Address of every printer on my HP-UX server. (There's 256 of them) I'm trying to do it using the PERIPH= value in /etc/lp/interface/<printername>, but I'm having problems scripting it as I'm a bit of a newbie. ... (2 Replies)
Discussion started by: Robin
2 Replies
Login or Register to Ask a Question
GMT_SHELL_FUNCTIONS.SH(1gmt)				       Generic Mapping Tools				      GMT_SHELL_FUNCTIONS.SH(1gmt)

NAME
gmt_shell_functions.sh - Practical functions to be used in GMT bourne shell scripts SYNOPSIS
gmt_init_tmpdir gmt_remove_tmpdir gmt_clean_up [prefix] gmt_message message gmt_abort message gmt_nrecords file(s) gmt_nfields string gmt_get_field string gmt_get_region file(s) [options] gmt_get_gridregion file [options] gmt_get_map_width -R -J gmt_get_map_height -R -J gmt_set_psfile file gmt_set_framename prefix framenumber gmt_set_framenext framenumber DESCRIPTION
gmt_shell_functions.sh provides a set of functions to Bourne (again) shell scripts in support of GMT. The calling shell script should include the following line, before the functions can be used: . gmt_shell_functions.sh Once included in a shell script, gmt_shell_functions.sh allows GMT users to do some scripting more easily than otherwise. The functions made available are: gmt_init_tmpdir Creates a temporary directory in /tmp or (when defined) in the directory specified by the environment variable TMPDIR. The name of the temporary directory is returned as environment variable GMT_TMPDIR. This function also causes GMT to run in `isolation mode', i.e. all temporary files will be created in GMT_TMPDIR and the .gmtdefaults file will not be adjusted. gmt_remove_tmpdir Removes the temporary directory and unsets the GMT_TMPDIR environment variable. gmt_cleanup Remove all files and directories in which the current process number is part of the file name. If the optional prefix is given then we also delete all files and directories that begins with the given prefix. gmt_message Send a message to standard error. gmt_abort Send a message to standard error and exit the shell. gmt_nrecords Returns the total number of lines in file(s) gmt_nfields Returns the number of fields or words in string gmt_get_field Returns the given field in a string. Must pass string between double quotes to preserve it as one item. gmt_get_region Returns the region in the form w/e/s/n based on the data in table file(s). Optionally add -Idx/dy to round off the answer. gmt_get_gridregion Returns the region in the form w/e/s/n based on the header of a grid file. Optionally add -Idx/dy to round off the answer. gmt_map_width Expects the user to give the desired -R -J settings and returns the map width in the current measurement unit. gmt_map_height Expects the user to give the desired -R -J settings and returns the map height in the current measurement unit. gmt_set_psfile Create the output PostScript file name based on the base name of a given file (usually the script name $0). gmt_set_framename Returns a lexically ordered filename stem (i.e., no extension) given the file prefix and the current frame number, using a width of 6 for the integer including leading zeros. Useful when creating animations and lexically sorted filenames are required. gmt_set_framenext Accepts the current frame integer counter and returns the next integer counter. NOTES
1. These functions only work in the bourne shell (sh) and their derivatives (like ash, bash, ksh and zsh). These functions do not work in the C shell (csh) or their derivatives (like tcsh), and cannot be used in DOS batch scripts either. 2. gmt_shell_functions.sh were first introduced in GMT version 4.2.2 and have since been regularly expanded with other practical scripting short-cuts. If you want to suggest other functions, please do so by mailing to the GMT mailing list: gmt-help@lists.hawaii.edu. SEE ALSO
GMT(1), sh(1), bash(1), minmax(1), grdinfo(1) GMT 4.5.7 15 Jul 2011 GMT_SHELL_FUNCTIONS.SH(1gmt)