Sponsored Content
Full Discussion: Numerical Decision
Top Forums Shell Programming and Scripting Numerical Decision Post 85978 by Perderabo on Sunday 9th of October 2005 04:55:34 PM
Old 10-09-2005
awk '$1>lim' lim=$i < inputfile > anotherfile
 

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

decision, case, it then else?

I'm writing this script in Korn Shell, on AIX. The script will print a log file, and it needs to decide what region it's in before printing. ( the output of db2 "get instance" is either "The current database manager instance is: db2q" or "The current database manager instance is: db2u") ... (6 Replies)
Discussion started by: jpprial
6 Replies

2. News, Links, Events and Announcements

WIPO Official Decision

At Last Official Decision of UNIX.com Domain dispute by WIPO is available to review. http://arbiter.wipo.int/domains/decisions/html/2002/d2002-0294.html (Status: unix.com > Complaint denied) (1 Reply)
Discussion started by: killerserv
1 Replies

3. UNIX for Dummies Questions & Answers

Platform decision

Hi folks First, let me apologize in advance for the long message. I know this will sound like a typical "newbie" message but I am really working to understand the technology in order to make informed decisions. I am currently in the process of evaluating Unix hardware and OS platforms for an... (5 Replies)
Discussion started by: Scooter
5 Replies

4. Shell Programming and Scripting

Query on decision making...

is_number() { echo $1|egrep '^*$' 2>&1 1>/dev/null return $? }why the following snippet always give an output as "no" and never "yes" whatever the parameter I give to function is_number? if ]; then echo yes; else echo no; fi In addition, the function is_number() is... (5 Replies)
Discussion started by: biglau
5 Replies

5. Shell Programming and Scripting

Read section of file and take decision

Hi, My requirement is that I've to read a config file having below info Oracle number|double;integer -> user can put multiple values here blob|binary varchar2|string varchar|string number(p,s)|decimal timestamp|date/time and so on .... Sybase bigint|bigint datetime|date/time... (2 Replies)
Discussion started by: dips_ag
2 Replies

6. Shell Programming and Scripting

Decision based on field value

Hi, I need to change the 3rd field value based on the 4th field value using a shell script. here are the fields; 05:15-23:59; 05:15-21:00; 11:00-18:00; TGSI; TGSummaryInfo_C ; ENTER VALID GAC 05:15-23:59; 05:15-21:00; 11:00-18:00; TGSI; TGSummaryInfo_E ; ENTER VALID GAC 05:15-23:59;... (4 Replies)
Discussion started by: sam_bd
4 Replies
ddi_dma_buf_setup(9F)					   Kernel Functions for Drivers 				     ddi_dma_buf_setup(9F)

NAME
ddi_dma_buf_setup - easier DMA setup for use with buffer structures SYNOPSIS
#include <sys/ddi.h> #include <sys/sunddi.h> int ddi_dma_buf_setup(dev_info_t *dip, struct buf *bp, uint_t flags, int (*waitfp) (caddr_t),, caddr_t arg, ddi_dma_lim_t *lim, ddi_dma_handle_t *handlep); INTERFACE LEVEL
This interface is obsolete. ddi_dma_buf_bind_handle(9F) should be used instead. PARAMETERS
dip A pointer to the device's dev_info structure. bp A pointer to a system buffer structure (see buf(9S)). flags Flags that go into a ddi_dma_req structure (see ddi_dma_req(9S)). waitfp The address of a function to call back later if resources aren't available now. The special function addresses DDI_DMA_SLEEP and DDI_DMA_DONTWAIT (see ddi_dma_req(9S)) are taken to mean, respectively, wait until resources are avail- able, or do not wait at all and do not schedule a callback. arg Argument to be passed to a callback function, if such a function is specified. lim A pointer to a DMA limits structure for this device (see ddi_dma_lim_sparc(9S) or ddi_dma_lim_x86(9S)). If this pointer is NULL, a default set of DMA limits is assumed. handlep Pointer to a DMA handle. See ddi_dma_setup(9F) for a discussion of handle. DESCRIPTION
ddi_dma_buf_setup() is an interface to ddi_dma_setup(9F). It uses its arguments to construct an appropriate ddi_dma_req structure and calls ddi_dma_setup() with it. RETURN VALUES
See ddi_dma_setup(9F) for the possible return values for this function. CONTEXT
ddi_dma_buf_setup() can be called from user or interrupt context, except when waitfp is set to DDI_DMA_SLEEP, in which case it can be called from user context only. ATTRIBUTES
See attributes(5) for a description of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Stability Level |Obsolete | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5), ddi_dma_addr_setup(9F), ddi_dma_free(9F), ddi_dma_htoc(9F), ddi_dma_setup(9F), ddi_dma_sync(9F), physio(9F), buf(9S), ddi_dma_lim_sparc(9S), ddi_dma_lim_x86(9S), ddi_dma_req(9S) Writing Device Drivers SunOS 5.10 27 Sep 2002 ddi_dma_buf_setup(9F)
All times are GMT -4. The time now is 08:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy