Sponsored Content
Full Discussion: CHECK SCRIPT SYNTAX
Top Forums Shell Programming and Scripting CHECK SCRIPT SYNTAX Post 302703155 by vidyadhar85 on Wednesday 19th of September 2012 11:28:07 AM
Old 09-19-2012
try checking XARGS man page might be usefull
Quote:

xargs can execute the command supplying some initial arguments directly, and reading the remaining arguments from standard input (or piped input).
xargs passes arguments to command in several bundles, this allows command to process more arguments than it could normally handle at once
This User Gave Thanks to vidyadhar85 For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

syntax and semantic check

Does the shell perform a syntax and semantic check before commands are sent to the kernel? Ravioli (3 Replies)
Discussion started by: ravioli
3 Replies

2. UNIX for Dummies Questions & Answers

quick check of my awk syntax

I've made an awk command that works successfully. However I'd like to add one character to it. For example instead of /what_i_have_now/ I'd like to change just ONE field to the opposite with an exclamation point. Like this: ! /what_i_have_now/ My question, where am I supposed to place... (1 Reply)
Discussion started by: yongho
1 Replies

3. UNIX for Dummies Questions & Answers

Script to check for a file, check for 2hrs. then quit

I wish to seach a Dir for a specific file, once the file is found i will perform additional logic. If the file is not found within two hours, i would like to exit. Logically, I'm looking for the best way to approach this Thanks for any assistance in advance. Note: I'm using a C shell and... (2 Replies)
Discussion started by: mmarsh
2 Replies

4. Shell Programming and Scripting

How to Check Shell script syntax w/o executing

Hello All, I looking for a way to verify the correction of shell script syntax. Is there any switch like -c in perl which do this in shell ? Thank You. (1 Reply)
Discussion started by: Alalush
1 Replies

5. Shell Programming and Scripting

script to check if another script is running and if so, then sleep for sometime and check again

Hi, I am a unix newbie. I need to write a script to check wheteher another script is still running. If it is, then sleep for 30m and then check again if the script is running. If the script has stopped running then, I need to come out of the loop. I am using RHEL 5.2 (2 Replies)
Discussion started by: mathews
2 Replies

6. Shell Programming and Scripting

Syntax error calling TCL script from shell script

hello everyone i am beginner on shell scripting .and i am working on my project work on ad hoc network i wrote a batch (.sh) to do a looping and execute a tcl script i wrote before in each iteration ..but i got this problem " syntax error near unexpected token `('... (1 Reply)
Discussion started by: marcoss90
1 Replies

7. Shell Programming and Scripting

Shell script check syntax not working ...

Hello i have question that i want check syntax from my script shell with sh -n filename but it's not show something even i have wrong syntax in my file. why can this happened or any other way to check it? i use on header of file : #!/bin/sh thx before :) (7 Replies)
Discussion started by: Gochengz
7 Replies

8. Shell Programming and Scripting

Help with Check Syntax of Shell Script without Running

Hi Everyone, Is there any way ( generic) to check syntax of Shell Scripts without running it?? (4 Replies)
Discussion started by: roy121
4 Replies

9. Shell Programming and Scripting

Script syntax help

#!/bin/bash if ; then echo "Lipsa IP"; exit; fi i=1 ip=$1 while ; do if ; then rand=`head -$i pass_file | tail -1` user=`echo $rand | awk '{print $1}'` pass=`echo $rand | awk '{print $2}'` CMD=`ps -eaf | grep -c mysql` if ; then ./mysql $ip $user $pass & else sleep 15... (6 Replies)
Discussion started by: galford
6 Replies
xargs(1)						      General Commands Manual							  xargs(1)

NAME
xargs - construct argument lists and execute command SYNOPSIS
[options] [command [initial-arguments]] DESCRIPTION
combines the fixed initial-arguments with arguments read from standard input to execute the specified command one or more times. The num- ber of arguments read for each command invocation and the manner in which they are combined are determined by the options specified. command, which can be a shell file, is searched for, using the environment variable. If command is omitted, is used. Arguments read in from standard input are defined to be contiguous strings of characters delimited by one or more blanks, tabs, or new- lines; empty lines are always discarded. Spaces and tabs can be embedded as part of an argument if escaped or quoted. Characters enclosed in quotes (single or double) are taken literally, and the delimiting quotes are removed. Outside of quoted strings, a backslash escapes the next character. The amount of memory available for the execution of command is limited by the system parameter By default, the size of the argument list is limited to bytes. See limits(5) and sysconf(2) for a description of these system parameters and how their values can be determined. To increase the available argument list space, use the option. Each argument list is constructed starting with the initial-arguments, followed by some number of arguments read from standard input (exception: see or option). The and options determine how arguments are selected for each command invocation. When none of these options is specified, the initial-arguments are followed by arguments read continuously from standard input until an internal buffer is full, then command is executed with the accumulated args. This process is repeated until there are no more args. When there are option conflicts (such as or versus the last option has precedence. Options The option values are: command is executed for each nonempty number lines of arguments from standard input. The last invocation of command will be with fewer lines of arguments if fewer than number remain. A line is considered to end with the first newline the last character of the line is a blank or a tab; a trailing blank/tab signals continuation through the next nonempty line. The and options are mutually exclusive. The last one specified takes effect. This option is equivalent to the option. is assumed if number is omitted or is given as the empty string (). Option is forced. Insert mode: command is executed for each line from standard input, taking the entire line as a single arg, inserting it in initial-argu- ments for each occurrence of replstr. A maximum of 5 arguments in initial-arguments can each contain one or more instances of replstr. Blanks and tabs at the beginning of each line are discarded. Constructed arguments must not grow larger than 255 bytes, and option is also forced. The and options are mutually exclusive. The last one specified takes effect. This option is equivalent to the option. is assumed if replstr is omitted or is given as the empty string (). Execute command using as many standard input arguments as possible, up to number arguments maximum. Fewer arguments are used if their total size is greater than size bytes, and for the last invocation if there are fewer than number arguments remaining. If option is also coded, each number arguments must fit in the size limitation or terminates execution. The maximum total size of each argument list is set to size bytes; size must be a positive integer less than (see limits(5), sysconf(2)). If is not coded, is taken as the default. Note that the bytes count for size includes one extra bytes for each argument and the count of bytes in the com- mand name. Trace mode: The command and each constructed argument list are echoed to standard error just prior to their execution. Prompt mode: The user is asked whether to execute command prior to each invocation. Trace mode is turned on to print the command instance to be executed, followed by a prompt. An affirmative reply (by default, an affirmative reply is optionally followed by anything) executes the command; anything else, including pressing Return, skips that particular invocation of command. Causes to terminate if any argument list would be greater than size bytes. is forced by the options and When none of the options or is coded, the total length of all arguments must be within the size limit. eofstr is taken as the logical end-of-file string. Underscore is assumed for the logical string if neither nor is used. The value with eofstr given as the empty string ( "" ) turns off the logical string capability (underscore is taken literally). reads standard input until either end-of-file or the logical string is encountered. Specify a logical end-of-file string to replace the default underscore character. Equivalent to the option above. terminates if it receives a return code of -1 from command or if it cannot execute command. When command is a shell program, it should explicitly (see sh(1)) with an appropriate value to avoid accidentally returning with -1. RETURN VALUE
exits with one of the following values: All invocations of command completed successfully. One or more invocations of command did not complete successfully. The command specified was found but could not be invoked. The command specified could not be found. EXTERNAL INFLUENCES
Environment Variables determines the space characters and the interpretation of text as single- and/or multibyte characters. determines the language in which messages are displayed, and the local language equivalent of an affirmative reply when the prompt option is specified. If or is not specified in the environment or is set to the empty string, the value of is used as a default for each unspecified or empty variable. If is not specified or is set to the empty string, a default of "C" (see lang(5)) is used instead of If any internationalization variable contains an invalid setting, behaves as if all internationalization variables are set to "C". See environ(5). International Code Set Support Single- and multibyte character code sets are supported. EXAMPLES
Move all files from directory to directory and echo each move command just before doing it: Combine the output of the parenthesized commands onto one line, then echo to the end of file Ask the user which files in the current directory are to be archived then archive them into one at a time: or many at a time: Execute (see diff(1)) with successive pairs of arguments originally typed as shell arguments: SEE ALSO
sh(1). STANDARDS CONFORMANCE
xargs(1)
All times are GMT -4. The time now is 01:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy