Sponsored Content
Full Discussion: Top utility in bash for loop
Top Forums Shell Programming and Scripting Top utility in bash for loop Post 302738787 by Yoda on Sunday 2nd of December 2012 07:59:14 PM
Old 12-02-2012
Once you have saved the settings to .toprc using W option, then you don't have to use option O & p anymore. Your top command will always display processes sorted by SWAP usage. Please give it a try and see if you are getting the desired result.
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Unload utility with loop method

Hi, I just wonder why the unload tools from INFORMIX doesn't unload all required file to every output of mOutFile at the accumulative way OR my script has an error ? In fact it just unload to one single record at the latest. for mFile in x??? do echo "Now working with file "$mFile"... (1 Reply)
Discussion started by: cedrichiu
1 Replies

2. Programming

top command line utility

I'm writing a monitoring application. I'd like to periodically get the information provided by the 'top' command line utility from within my code and write the output of 'top' to a file. Wondering if anyone has already done something like this. Doing system("top > someFile"); does not create... (6 Replies)
Discussion started by: antoniomorandi
6 Replies

3. Shell Programming and Scripting

Need help on bash "find" utility

Hi all, I need to write a script "hunt" that is similar to "find" without using "find" in there. Also have to print out how many subdirectories it's got. like if I type: $hunt unixit will show: 2 /home/var/unix something like that. I have no idea how to do the file search without using find... (2 Replies)
Discussion started by: sonyd8
2 Replies

4. Shell Programming and Scripting

bash and ksh: variable lost in loop in bash?

Hi, I use AIX (ksh) and Linux (bash) servers. I'm trying to do scripts to will run in both ksh and bash, and most of the time it works. But this time I don't get it in bash (I'm more familar in ksh). The goal of my script if to read a "config file" (like "ini" file), and make various report.... (2 Replies)
Discussion started by: estienne
2 Replies

5. UNIX for Dummies Questions & Answers

Top level TCSH while Loop doen't work

Hey guys... I'm learning some shell scripting on OS X using the tcsh shell. For some reason... my while loop isn't executing right (or more likely I am doing something wrong.) Something as simple as this doesn't work: #!/bin/tcsh set g = 0 while ($g <10) echo "this" $g @ g =... (2 Replies)
Discussion started by: sprynmr
2 Replies

6. Shell Programming and Scripting

Using variables created sequentially in a loop while still inside of the loop [bash]

I'm trying to understand if it's possible to create a set of variables that are numbered based on another variable (using eval) in a loop, and then call on it before the loop ends. As an example I've written a script called question (The fist command is to show what is the contents of the... (2 Replies)
Discussion started by: DeCoTwc
2 Replies

7. Shell Programming and Scripting

BASH loop inside a loop question

Hi all Sorry for the basic question, but i am writing a shell script to get around a slightly flaky binary that ships with one of our servers. This particular utility randomly generates the correct information and could work first time or may work on the 12th or 100th attempt etc !.... (4 Replies)
Discussion started by: rethink
4 Replies

8. UNIX for Beginners Questions & Answers

Bash script - Remove the 3 top level of a full path filename

Hello. Source file are in : /a/b/c/d/e/f/g/some_file Destination is : /d/e where sub-directories "f" and "g" may missing or not. After copying I want /a/b/c/d/e/f/g/file1 in /d/e/f/g/file1 On source /a is top-level directory On destination /d is top-level directory I would like... (2 Replies)
Discussion started by: jcdole
2 Replies
lsearch(n)						       Tcl Built-In Commands							lsearch(n)

__________________________________________________________________________________________________________________________________________________

NAME
lsearch - See if a list contains a particular element SYNOPSIS
lsearch ?options? list pattern _________________________________________________________________ DESCRIPTION
This command searches the elements of list to see if one of them matches pattern. If so, the command returns the index of the first match- ing element (unless the options -all or -inline are specified.) If not, the command returns -1. The option arguments indicates how the | elements of the list are to be matched against pattern and it must have one of the following values: -all Changes the result to be the list of all matching indices (or all matching values if -inline is specified as well.) | -ascii The list elements are to be examined as Unicode strings (the name is for backward-compatability reasons.) This option is only mean- ingful when used with -exact or -sorted. -decreasing The list elements are sorted in decreasing order. This option is only meaningful when used with -sorted. -dictionary The list elements are to be compared using dictionary-style comparisons. This option is only meaningful when used with -exact or -sorted. -exact The list element must contain exactly the same string as pattern. -glob Pattern is a glob-style pattern which is matched against each list element using the same rules as the string match command. -increasing The list elements are sorted in increasing order. This option is only meaningful when used with -sorted. -inline The matching value is returned instead of its index (or an empty string if no value matches.) If -all is also specified, then the | result of the command is the list of all values that matched. -integer The list elements are to be compared as integers. This option is only meaningful when used with -exact or -sorted. -not This negates the sense of the match, returning the index of the first non-matching value in the list. | -real The list elements are to be compared as floating-point values. This option is only meaningful when used with -exact or -sorted. -regexp Pattern is treated as a regular expression and matched against each list element using the rules described in the re_syntax refer- ence page. -sorted The list elements are in sorted order. If this option is specified, lsearch will use a more efficient searching algorithm to search list. If no other options are specified, list is assumed to be sorted in increasing order, and to contain ASCII strings. This option is mutually exclusive with -glob and -regexp, and is treated exactly like -exact when either -all, or -not is specified. -start index The list is searched starting at position index. If index has the value end, it refers to the last element in the list, and | end-integer refers to the last element in the list minus the specified integer offset. If option is omitted then it defaults to -glob. If more than one of -exact, -glob, -regexp, and -sorted is specified, whichever option is specified last takes precedence. If more than one of -ascii, -dictionary, -integer and -real is specified, the option specified last takes precedence. If more than one of -increasing and -decreasing is specified, the option specified last takes precedence. EXAMPLES
| lsearch {a b c d e} c => 2 | lsearch -all {a b c a b c} c => 2 5 | lsearch -inline {a20 b35 c47} b* => b35 | lsearch -inline -not {a20 b35 c47} b* => a20 | lsearch -all -inline -not {a20 b35 c47} b* => a20 c47 | lsearch -all -not {a20 b35 c47} b* => 0 2 | lsearch -start 3 {a b c a b c} c => 5 | SEE ALSO
foreach(n), list(n), lappend(n), lindex(n), linsert(n), llength(n), lset(n), lsort(n), lrange(n), lreplace(n) | KEYWORDS
list, match, pattern, regular expression, search, string Tcl 8.4 lsearch(n)
All times are GMT -4. The time now is 03:12 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy