Sponsored Content
Full Discussion: I want to build a script
Top Forums Shell Programming and Scripting I want to build a script Post 24234 by peter.herlihy on Monday 8th of July 2002 06:05:13 PM
Old 07-08-2002
Ah, very clever....context does help.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

I want to build a script

I have file which has "A" character in more than 1000 lines and I want replace this "A" with "f". There is also "A" which I don't want to replace at the last line. Currently, I use this script to replace them one by one :g/A/s//f/g Regards (2 Replies)
Discussion started by: mewalter
2 Replies

2. Shell Programming and Scripting

Script Build

I have a 3 status option 1 , 4 , 6 1 - Active 4 - Temp.. 6 - Deactive I want to build a script which when it finds either of the status options (1,4,6), then returns the relevant string. txs :confused: (3 Replies)
Discussion started by: mewalter
3 Replies

3. Shell Programming and Scripting

Build script for all shells

Hi, I made a build script for the product I am working on. The script was made in the /bin/sh shell. My first line in the script (after the #! /bin/sh and following # lines ) were, if ; then /bin/sh fi; It works well with my sh shell. I run the script as sh build.sh Now I... (9 Replies)
Discussion started by: vino
9 Replies

4. Shell Programming and Scripting

How to build a string in shell script

Hi all, I had a typical problem. I am using a parameter PK="PK1 PK2 PK3" i need to build the string a.PK1=b.PK1 and a.PK2=b.PK2 and a.PK3=b.PK3 Please help (8 Replies)
Discussion started by: nkosaraju
8 Replies

5. Shell Programming and Scripting

autoresolving 'native' in build script

Greets. I have a build system that comprises of one parent script and about 150 children to build Gnome. I have a file that is sourced at the top of every script to gather variables needed for the build. In this variables file, CFLAGS are set. What I would like to do is do a quick check... (1 Reply)
Discussion started by: madpenguin
1 Replies

6. Shell Programming and Scripting

How to build a command in a script

Hi All I am trying to build a script that will take data from a tab separated file and use that to split up a quicktime file. So far the code is as follows #!/bin/sh #test parsing of data #fix excel file output returns cat $1 | tr "\r" "\n" > $1.fix printf "\n" >> $1.fix mv $1.fix $1 ... (3 Replies)
Discussion started by: babajuma
3 Replies

7. Shell Programming and Scripting

Script Not working as per its build

Can someone take a look into script, where and what is going wrong in this. (4 Replies)
Discussion started by: baraghun
4 Replies

8. UNIX for Dummies Questions & Answers

Adding SDK Build on Kernel Source Build

Hi, So I downloaded this kernel source and was able to build it successfully. But I want to add this SDK source code inside, can anyone help me how to do this? Note that the SDK source can be built by itself. I added the SDK in the main Makefile: init-y := init/ #added SDK... (0 Replies)
Discussion started by: h0ujun
0 Replies

9. Shell Programming and Scripting

Build.xml invocation by Build Script

Hi I have a build.xml file and I can run it on Windows via cmd. Now I want to write a script to invoke the same. Is there a way to do this? (1 Reply)
Discussion started by: ankur328
1 Replies

10. Shell Programming and Scripting

Using sqlite query to build script...

Okay, so this one is a bit above my knowledge level so I'm hoping for some pointers. Here's the scenario: I have a backup system on my network that makes single file images of the machines it's backing up and uses an sqlite database to keep track of everything. As is pretty typical with... (2 Replies)
Discussion started by: NyxPDX
2 Replies
makecontext(2)							System Calls Manual						    makecontext(2)

NAME
makecontext(), swapcontext() - manipulate user contexts SYNOPSIS
Deprecated Deprecated DESCRIPTION
The function modifies the context specified by ucp, which has been initialized using When this context is resumed using or program execu- tion continues by calling passing it the arguments that follow argc in the call. Before a call is made to the context being modified should have a stack allocated for it. The value of argc must match the number of inte- ger arguments passed to otherwise the behavior is undefined. The uc_link member is used to determine the context that will be resumed when the context being modified by returns. The uc_link member should be initialized prior to the call to The function saves the current context in the context structure pointed to by oucp and sets the context to the context structure pointed to by ucp. RETURN VALUE
On successful completion, returns 0. Otherwise, -1 is returned and is set to indicate the error. WARNINGS
and are deprecated and should be used only by legacy applications. Context APIs are not recommended due to possible compatibility problems from release to release, because context APIs are very architec- ture-specific. The context APIs "expose" the architecture to the application, such that the application may not be compatible with all releases. If you must use context APIs, be aware of the following: o Do not copy the context yourself. It is not contiguous. The context may have pointers that may point back to the original context rather than in the copied context; hence, it will be broken. o The size of the context will vary in length from release to release. ERRORS
The and functions will fail if: [ENOMEM] The ucp argument does not have enough stack left to complete the operation. SEE ALSO
exit(2), getcontext(2), sigaction(2), sigprocmask(2), <ucontext.h>. Deprecated makecontext(2)
All times are GMT -4. The time now is 02:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy