Sponsored Content
Top Forums Shell Programming and Scripting Unable to find files using wildcard on AIX. Post 303044231 by Neo on Monday 17th of February 2020 04:46:42 AM
Old 02-17-2020
Quote:
Originally Posted by MadeInGermany
(@Neo, nothing was really missing. I was able to construct the output from the given input sample and the given code. And no error message.)
.
This is not an issue of "being able to construct the output" Anyone can construct the output with basic skills.

The point is that readers should not have to construct the output. OPs should post their output.

These are the rules.

Thanks.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Find wildcard .shtml files in wildcard directories and removing them- How's it done?

I'm trying to figure out how to build a small shell script that will find old .shtml files in every /tgp/ directory on the server and delete them if they are older than 10 days... The structure of the paths are like this: /home/domains/www.domain2.com/tgp/ /home/domains/www.domain3.com/tgp/... (1 Reply)
Discussion started by: Neko
1 Replies

2. Shell Programming and Scripting

Wildcard in Cshell find command

The following command works fine in my cshell script: set Deliverables = `find . -name "eliverables" -print` The following command does not work: set LASFiles = `find . -name "*." -print` In the first example, when tested in an if statement, the script will continue whether a... (3 Replies)
Discussion started by: phudgens
3 Replies

3. Solaris

Problem in using wildcard characters in xargs with find

Hi, Under my parent diectory I have directory named "Response" in many of its subfolders. I am interested to see all files with extention .pro in Response Directory. I am giving following command - find . -name "Response" -type d | xargs -i ls -lrt {}/*.pro but it is not giving result. ... (3 Replies)
Discussion started by: sanjay1979
3 Replies

4. Shell Programming and Scripting

Find replace a particular string of data with wildcard

Hi I am having a csv file in which lots of data are available wherein i need to find a particular kind of data and replace it with null value. here is the sample data.. I need to find the string starting with 404-064- and up to the first space i have to remove the data and keep the... (4 Replies)
Discussion started by: aemunathan
4 Replies

5. Shell Programming and Scripting

find command with wildcard directory

I want to look if there is any file inside a specific directory which was modified before 2 days. I wrote the find command, but the problem is there is one directory and that is a random directory generated by unix, so not sure on how to code for that on the find command. find... (5 Replies)
Discussion started by: srini0603
5 Replies

6. UNIX for Dummies Questions & Answers

Unable to find files using wild card search

Hi All, My server is AIX and i am trying to search for a file in a specific path in directory. The file name can be of two types: Position_20131114.csv Position123333_20131114.csv I am trying to assign a SOURCEFILE variable as mentioned below:, but i am unable to find/locate the files... (2 Replies)
Discussion started by: abhi_123
2 Replies

7. UNIX for Dummies Questions & Answers

Unable to find files, those can be present anywhere in the directory tree,based on its creation date

Hi I am unable to find files, those are present anywhere in the same directory tree, based on the creation date. I need to find the files with their path, as I need to create them in another location and move them. I need some help with a script that may do the job. Please help (2 Replies)
Discussion started by: sam192837465
2 Replies

8. UNIX for Beginners Questions & Answers

Find and replace with wildcard

HI there, I am trying to find and replace with wildcard with data chr1 69511 69511 A G 1/1:0,34:791,78,0:78:34 0/1:55,60:1130,0,1513:99:116 1/1:0,28:630,63,0:63:28 0/1:0,34:626,57,0:57:34 To this chr1 69511 69511 A G homo hetero homo hetero Where I find and replace 0/1 with... (3 Replies)
Discussion started by: daashti
3 Replies

9. AIX

Issue with wildcard in filename (AIX 7.1.0.0)

Hi, This has been pestering me for quite a while, any help will be highly appreciated The current directory has a file with below name npidata_20050523-20171210.csv The below wildcard matched the above file ls -ltr npidata_????????-201712??.csv But when the part '201712' is put... (6 Replies)
Discussion started by: zulfi123786
6 Replies

10. Shell Programming and Scripting

Unable to grep using wildcard in a file.

I wish to check if my file has a line that does not start with '#' and has 1. Listen and 2. 443 echo "Listen 443" > test.out grep 'Listen *443' test.out | grep -v '#' Listen 443 The above worked fine but when the entry changes to the below the grep fails... (2 Replies)
Discussion started by: mohtashims
2 Replies
Ns_ConnSetHeaders(3aolserver)				   AOLserver Library Procedures 			     Ns_ConnSetHeaders(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
Ns_ConnCondSetHeaders, Ns_ConnSetExpiresHeader, Ns_ConnSetHeaders, Ns_ConnSetLastModifiedHeader, Ns_ConnSetLengthHeader, Ns_ConnSetRe- quiredHeaders - Routines to manage response headers SYNOPSIS
#include "ns.h" void Ns_ConnCondSetHeaders(conn, key, value) void Ns_ConnSetExpiresHeader(conn, expires) void Ns_ConnSetHeaders(conn, key, value) void Ns_ConnSetLastModifiedHeader(conn, mtime) void Ns_ConnSetLengthHeader(conn, length) void Ns_ConnSetRequiredHeaders(conn, type, length) void Ns_ConnSetTypeHeader(conn, type) ARGUMENTS
Ns_Conn conn (in) Pointer to open connection. char *expires(in) Pointer to string to construct an expires header. char *key (in) Pointer to string key for a header. int length (in) Integer length of output content to construct a content-length header. time_t mtime (in) Modification time stamp to construct a last-modified header. int status (in) HTTP result status code. char *type (in) Pointer to mimetype string to construct a content-type header. char *value (in) Pointer to a string value for a header. _________________________________________________________________ DESCRIPTION
These functions manage the output headers eventually sent through the given open connection to a client. They operate by modifying the outputheaders Ns_Set of the connection Ns_Conn structure. Headers can be modified until they are queued or sent directly via the Ns_Con- nQueueHeaders or Ns_ConnFlushHeaders routines. It is possible to modify the outputheaders directly although use of these functions is pre- ferred for consistancy. Note that higher level output routines such as Ns_ConnFlush or the various Ns_ConnReturn routines normally generate all the headers neces- sary for a given response. These routines are normally only necessary for specialized applications which output additional specific head- ers or specialized request procedures which do not use the higher level output routines. void Ns_ConnCondSetHeaders(conn, key, value) Append an output header of the form key: value only if the header does not already exist in the outputheaders set. void Ns_ConnSetExpiresHeader(conn, expires) This routine is equivalent to Ns_ConnSetHeaders(conn, "Expires", expires). Note that the exires parameter is treated as a string, not a timestamp. A timestamp can be constructed with the Ns_HttpTime routine. void Ns_ConnSetHeaders(conn, key, value) Append a header of the form key: value to the outputheaders. This routine will append a new, possibly duplicate, header regardless of whether a matching header already exists in the outputheaders. void Ns_ConnSetLastModifiedHeader(conn, mtime) This routine appends a last-modified header if one does not already exists, formatting the given modification time as a proper HTTP timestamp with the Ns_HttpTime routine. void Ns_ConnSetLengthHeader(conn, length) This routine appends a content-length: length header, formatting the given integer length as a string. This routine will also record the response length internally in the conn structure so that it can be later retrieved via the Ns_ConnResponseLength routine, for example, as part of a post-connection logging callback. void Ns_ConnSetRequiredHeaders(conn, type, length) This routine appends the basic headers normally required for a proper HTTP transaction. These include mime-version, date, and server as well as the content-type: type and content-length: length headers for the given arguments. If type is NULL or length is less than zero, the corresponding headers will not be appended. This routine is often the only header construction routine neces- sary for request procedures which construct headers manually instead of calling routines such as Ns_ConnFlush which handle header construction and queueing automatically. void Ns_ConnSetTypeHeader(conn, type) This routine is equivalent to Ns_ConnSetHeaders(conn, "content-type", type). SEE ALSO
Ns_ConnQueueHeaders(3), Ns_ConnFlushHeaders(3), Ns_ConnFlush(3) KEYWORDS
headers, response AOLserver 4.0 Ns_ConnSetHeaders(3aolserver)
All times are GMT -4. The time now is 10:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy