Sponsored Content
Operating Systems AIX UNIX ksh - To print the PID number and repeat count Post 303014951 by RudiC on Saturday 24th of March 2018 06:46:24 AM
Old 03-24-2018
Now - what would be YOUR OWN results running your scripts (which BTW don't really differ except for the ls targets and the date selection)?

I immediately can see two syntax and one semantical errors, and several opportunities for improvements / optimisation. With the errors removed, the scripts should deliver what was requested.

Last edited by RudiC; 03-24-2018 at 07:58 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to ignore characters and print only number using unix?

say D45H E67H G779K F8888U T66Y Y333U output shud be like 45 67 779 8888 66 333 (5 Replies)
Discussion started by: cdfd123
5 Replies

2. Shell Programming and Scripting

KSH 88 - Can I find the PID for an IP connection?

Hi, If I use this command netstat | grep "1268" it shows me all IP addresses connected via port 1268, which is half of what I want. I would like to be able to then map these against a PID on the system, and also thereby get the userid. I have done a couple of days google bashing but... (3 Replies)
Discussion started by: gcraill
3 Replies

3. UNIX for Dummies Questions & Answers

Unix command to count the number of files with specific characters in name

Hey all, I'm looking for a command that will search a directory (and all subdirectories) and give me a file count for the number of files that contain specific characters within its filename. e.g. I want to find the number of files that contain "-a.jpg" in their name. All the searching I've... (6 Replies)
Discussion started by: murphysm
6 Replies

4. Shell Programming and Scripting

print number pyramid with for loop in unix

How can I print number pyramid with for loop(not while only for) in unix like: 1 22 333 4444 55555 ---------- Post updated at 09:09 AM ---------- Previous update was at 09:07 AM ---------- I forgot it is in ksh...I wrote a script in bash but it is nt wrkng in ksh... bash script... (12 Replies)
Discussion started by: joshilalit2004
12 Replies

5. Shell Programming and Scripting

count identical strings print last row and count

I have a sorted file like: Apple 3 Apple 5 Apple 8 Banana 2 Banana 3 Grape 31 Orange 7 Orange 13 I'd like to search $1 and if $1 is not the same as $1 in the previous row print that row and print the number of times $1 was found. so the output would look like: Apple 8 3 Banana... (2 Replies)
Discussion started by: dcfargo
2 Replies

6. UNIX for Dummies Questions & Answers

How do you print the number of processes that each user is currently running in Unix?

Ok, so I know there's a way to do this, but I've been trying to find out all afternoon with no luck. I think it should print out something like this: 1 bin 2 daemon 6 duo Where the numbers on the left are the number of processes being run by the user whose name is listed on the right. Is... (4 Replies)
Discussion started by: Duo11
4 Replies

7. Shell Programming and Scripting

Help with Unix and Awk to count number of occurrences

Hi, I have a file (movies.sh), this file contains list of movies such as I want to redirect the movies from movies.sh to file_to_process to allow me process the file with out losing anything. I have tried Movies.sh >> file_to_process But I want to add the row number to the data... (2 Replies)
Discussion started by: INHF
2 Replies

8. Shell Programming and Scripting

count number of entries perl program or Unix script

Hi I have a file with number of entries name 1 123 name 1 345 name 1 65346 name2 3243 name2 24234 name 2 234234 so on ......... how to count total number of entries for name 1 and name2...and so on Please guide. (1 Reply)
Discussion started by: manigrover
1 Replies

9. Shell Programming and Scripting

Count and print the number of occurences

I have some files as shown below GLL ALM 654-656 654 656 SEM LYG 655-657 655 657 SEM LYG 655-657 655 657 ALM LEG 656-658 656 658 ALM LEG 656-658 656 658 ALM LEG 656-658 656 658 LEG LEG 658-660 658 660 LEG LEG 658-660 658 660 The value of GLL is... (5 Replies)
Discussion started by: arch
5 Replies

10. UNIX for Dummies Questions & Answers

UNIX - command to count number of files in subdirectories

I have a folder named test/ and under that I have multiple directories and in each of the directory I have multiple log files. I want to know how many files exists under each sub directory. test |--quanrantine |--logfile1 |--logfile2 |--spooling |--logfile1 ... (4 Replies)
Discussion started by: ravikirankethe
4 Replies
XtGetSelectionValues()													    XtGetSelectionValues()

Name
  XtGetSelectionValues - obtain selection data in multiple formats.

Synopsis
  void XtGetSelectionValues(w, selection, targets, count, callback,
  client_data, time)
	 Widget w;
	 Atom selection;
	 Atom *targets;
	 int count;
	 XtSelectionCallbackProc callback;
	 XtPointer *client_data;
	 Time time;

Inputs
  w	    Specifies the widget that is making the request.  Must be of class core or any subclass thereof.

  selection Specifies the particular selection desired (usually XA_PRIMARY or XA_SECONDARY).

  targets   Specifies the types of information about the selection that are being requested.

  count     Specifies the length of the targets and client_data arrays.

  callback  Specifies the callback procedure to be called with each selection value obtained.  Note that this is how the selection values are
	    communicated back to the client.

  client_data
	    Specifies an array of client data (one for each target type) each element of which will be passed to callback when it  is  called
	    for the corresponding element of targets.

  time	    Specifies the timestamp that indicates when the selection value is desired.  This should be the timestamp of the event that trig-
	    gered this request; the value CurrentTime is not acceptable.

Description
  XtGetSelectionValues() is similar to XtGetSelectionValue() except that it takes an array of target types and an array of  client  data  and
  requests the current value of the selection converted to each of the targets.  The callback is called once for each element of targets, and
  is passed the corresponding element of client_data.  The effect is as if each target were specified in a separate call to XtGetSelectionVa-
  lue(),  except  that	XtGetSelectionValues() guarantees that all the conversions will use the same selection value because the ownership of
  the selection cannot change in the middle of the list, as could happen when calling XtGetSelectionValue() repeatedly.

  See XtGetSelectionValue() for more information.

See Also
  XtGetSelectionValue(1), XtGetSelectionValueIncremental(1), XtGetSelectionValuesIncremental(1),
  XtSelectionCallbackProc(2).

Xt - Selections 													    XtGetSelectionValues()
All times are GMT -4. The time now is 11:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy