03-30-2018
Why must they be sequential @ctsgnb? An array is used to count the occurrence in the spend file and in a way "post processed" while reading the transfile... No matter how the records in the spend file are arranged, the outcome is the same..
10 More Discussions You Might Find Interesting
1. Linux
I need to find the line count of multiple strings in a particular file. The strings are as follows:
bmgcc
bmgccftp
bsmsftp
bulkftp
cctuneftp
crbtftp
crmpos
cso
gujhr
I am doing manual grep for each of the string to find the line count. The command i am using right now is:
grep mark... (3 Replies)
Discussion started by: salaathi
3 Replies
2. Shell Programming and Scripting
Hello,
I'm looking for a wait to count the number of occurrences of a certain string of characters within a file. The file that I trying to parce has segments within the file that have a header and footer to each segment and I'm trying to do a count of the header string and compare it to a count... (9 Replies)
Discussion started by: bd_joy
9 Replies
3. Shell Programming and Scripting
Hi All,
I have a below file:
==================
02:53 pravin-root
02:53 pravin-root
03:05 pravin-root
02:55 pravin1-root
02:59 pravin1-root
==================
How do I find the first and last value of column 1. For example, how do I find 02:53 is the first time stamp and 03:05 is... (3 Replies)
Discussion started by: praving5
3 Replies
4. Shell Programming and Scripting
I am writing a package manager in BASH and I would like a small snippet of code that finds lines that match exact input and count them. For example, my file contains:
xyz
xyz-lib2.0+
xyz-lib2.0
xyz-lib1.5
and "grep -c xyz" returns 4.
The current function is:
# $1 is the package name.... (3 Replies)
Discussion started by: cooprocks123e
3 Replies
5. Shell Programming and Scripting
I have a file containing about 5 million rows, in the file there are some records which has extra delimiter at random position. (we dont know the positions), now we have to Count the delimeter from each row and if the count of delimeter is not matching then I want to delete those rows from the... (5 Replies)
Discussion started by: Akumar1
5 Replies
6. Shell Programming and Scripting
Hi Guys,
The script which I am using works really good for finding the file count for files that are not symlink. I know I can use find command like:
find . -type l | wc -l
This way I can get filecount of the symlink but is there a one liner to use -type l and -type f option ? That is... (4 Replies)
Discussion started by: dixits
4 Replies
7. Shell Programming and Scripting
Hi
I ahve a lookup file wiht seven words
CD
HT
CAD
HT
T1D
T2D
BDanother file contain data like this
CHRM1 P11229 Pirenzepine DAP000492 Peptic ulcer disease Approved T2D
CHRM1 P11229 Glycopyrrolate DAP001116 Anesthetic Approved T2D
CHRM1 P11229 ... (7 Replies)
Discussion started by: manigrover
7 Replies
8. UNIX for Dummies Questions & Answers
How to find count total number of pattern in a file …
File contains : a.txt
-------------
aaa bbb nnn
ccc aaa bbb
aaa ddd aaa
aaa aaa aaa
grep -c aaa a.txt
Op: 4 ( But my requirement is should count the total no of patterns as 7 ) (4 Replies)
Discussion started by: Jitten
4 Replies
9. UNIX for Beginners Questions & Answers
I'm trying to use awk to count the occurrences of two matching fields of a CSV file.
For instance, for data that looks like this...
Joe,Blue,Yes,No,High
Mike,Blue,Yes,Yes,Low
Joe,Red,No,No,Low
Joe,Red,Yes,Yes,Low
I've been trying to use code like this...
countvar=`awk ' $2~/$color/... (4 Replies)
Discussion started by: nmoore2843
4 Replies
10. UNIX for Beginners Questions & Answers
Hi,
I have a file with a list of bunch of IP addresses from different VLAN's . I am trying to find the list the number of each vlan occurence in the output
Here is how my file looks like
1.1.1.1
1.1.1.2
1.1.1.3
1.1.2.1
1.1.2.2
1.1.3.1
1.1.3.2
1.1.3.3
1.1.3.4
So what I am trying... (2 Replies)
Discussion started by: new2prog
2 Replies
LEARN ABOUT PHP
ldap_list
LDAP_LIST(3) 1 LDAP_LIST(3)
ldap_list - Single-level search
SYNOPSIS
resource ldap_list (resource $link_identifier, string $base_dn, string $filter, [array $attributes], [int $attrsonly], [int $size-
limit], [int $timelimit], [int $deref])
DESCRIPTION
Performs the search for a specified $filter on the directory with the scope LDAP_SCOPE_ONELEVEL.
LDAP_SCOPE_ONELEVEL means that the search should only return information that is at the level immediately below the $base_dn given in the
call. (Equivalent to typing " ls" and getting a list of files and folders in the current working directory.)
PARAMETERS
o $link_identifier
- An LDAP link identifier, returned by ldap_connect(3).
o $base_dn
- The base DN for the directory.
o $filter
-
o $attributes
- An array of the required attributes, e.g. array("mail", "sn", "cn"). Note that the "dn" is always returned irrespective of which
attributes types are requested. Using this parameter is much more efficient than the default action (which is to return all
attributes and their associated values). The use of this parameter should therefore be considered good practice.
o $attrsonly
- Should be set to 1 if only attribute types are wanted. If set to 0 both attributes types and attribute values are fetched which
is the default behaviour.
o $sizelimit
- Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
Note
This parameter can NOT override server-side preset sizelimit. You can set it lower though.
Some directory server hosts will be configured to return no more than a preset number of entries. If this occurs, the server
will indicate that it has only returned a partial results set. This also occurs if you use this parameter to limit the count
of fetched entries.
o $timelimit
- Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
Note
This parameter can NOT override server-side preset timelimit. You can set it lower though.
o $deref
- Specifies how aliases should be handled during the search. It can be one of the following:
o LDAP_DEREF_NEVER - (default) aliases are never dereferenced.
o LDAP_DEREF_SEARCHING - aliases should be dereferenced during the search but not when locating the base object of the
search.
o LDAP_DEREF_FINDING - aliases should be dereferenced when locating the base object but not during the search.
o LDAP_DEREF_ALWAYS - aliases should be dereferenced always.
RETURN VALUES
Returns a search result identifier or FALSE on error.
CHANGELOG
+--------+---------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+---------------------------------------------------+
| 4.0.5 | |
| | |
| | Parallel searches support was added. See |
| | ldap_search(3) for details. |
| | |
+--------+---------------------------------------------------+
EXAMPLES
Example #1
Produce a list of all organizational units of an organization
<?php
// $ds is a valid link identifier for a directory server
$basedn = "o=My Company, c=US";
$justthese = array("ou");
$sr = ldap_list($ds, $basedn, "ou=*", $justthese);
$info = ldap_get_entries($ds, $sr);
for ($i=0; $i < $info["count"]; $i++) {
echo $info[$i]["ou"][0];
}
?>
SEE ALSO
ldap_search(3).
PHP Documentation Group LDAP_LIST(3)