Sponsored Content
Top Forums UNIX for Dummies Questions & Answers problems with ctrl-z, to switch foreground, background Post 35388 by Perderabo on Thursday 10th of April 2003 08:54:10 AM
Old 04-10-2003
You can't get advanced features in sh on Solaris unless Sun decides to rewrite it.

My advice is to avoid using Sun's sh as an interactive shell. You'd have to travel back in time roughly 25 years to find the Bourne shell in widespread use as an interactive shell.

It is only useful to run very old shell scripts that are not compatible with modern shells. And most very old shell scripts will work fine with ksh anyway.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

set background/foreground color in .profile

I am using a telnet session (VT100) and need to modify my .profile so that it will set the color of the telnet session. I am not using Xterm (ie: can't use .Xdefaults). I am able to change the colors via menu's but need to preset in .profile. Is this possible??? Can't find anything at all on how... (3 Replies)
Discussion started by: dvella
3 Replies

2. Shell Programming and Scripting

how to get background job to foreground

hi, i am just wondering that wen we give the following code we make a process run in background...can the viceversa be performed?i.e can this be made foreground again # sleep 75& 21751 # (4 Replies)
Discussion started by: sandilya
4 Replies

3. UNIX for Advanced & Expert Users

make a foreground running process to run background without hang up

I've tried this a long time ago and was successful but could not remember how i did it. Tried ctrl+Z and then used bg % could not figure what i did after to keep it no hangup - not sure if used nohup -p pid, can u plz help me out if this can be done. Any help will be appreciated. (12 Replies)
Discussion started by: pharos467
12 Replies

4. Shell Programming and Scripting

Background and Foreground of a process within a script

I'm not sure if it is even possible but I figured if it was someone here would know how to do it... I am running a script which starts a bunch of processes in the background but there is one process I would like to bring back to the foreground when complete. Unfortunately the process that I... (2 Replies)
Discussion started by: ctruhn
2 Replies

5. UNIX for Advanced & Expert Users

what is the diff b/w background and foreground process

What are all the difference between a Background and Foreground processes ?! A Background process does not have access to STDIN and OUT.. What else ? Is there any detailed description available somewhere ? (5 Replies)
Discussion started by: onequestion
5 Replies

6. Shell Programming and Scripting

Send Foreground job to background redirecting output

I have many CPU intensive processes running and sometimes I run them in the foreground so that I can see what the output is. I want to send that foreground process to the background, but also have it direct the output to a logfile. I know to send something to the bg I do Ctrl-z on the FG... (6 Replies)
Discussion started by: jhullbuzz
6 Replies

7. Shell Programming and Scripting

Trap CTRL-C and background process

Hello, I have a script which copies via scp several large files to a remote server. What I want is that even if someone hits CTRL-C, the scp commands continues till the end. Here is what I wrote #! /bin/bash function testFunction { echo "COPY START" scp large.tar.gz... (11 Replies)
Discussion started by: RobertFord
11 Replies

8. Shell Programming and Scripting

How can put a background process to the foreground

Hi, guys: I am working on my own shell using c. When I put a process into the background, how can I put it back to the foreground using tcsetpgrp? Thanks (3 Replies)
Discussion started by: tomlee
3 Replies

9. Shell Programming and Scripting

Move shell script from foreground to background

Hi, Need an urgent help. I have a program executing in foreground. I need to execute it in background and also to remove terminal dependency. Thanks In advance. 116@434 (7 Replies)
Discussion started by: 116@434
7 Replies

10. Shell Programming and Scripting

[Solved] Background and foreground colors for xterm

Hi all, I used the code given by cfajohnson on this forum to generate background colors for xterm. Thanks cfajohnson... (sorry wasnt allowed to past the complete url) n=200 ## adjust to taste: higher value, lighter background n1=$(( 256 - $n )) bg=$( printf "#%x%x%x\n" $(( $RANDOM % $n1 +... (2 Replies)
Discussion started by: carv_13
2 Replies
XSetState(3X11) 						  XLIB FUNCTIONS						   XSetState(3X11)

NAME
XSetState, XSetFunction, XSetPlaneMask, XSetForeground, XSetBackground - GC convenience routines SYNTAX
XSetState(display, gc, foreground, background, function, plane_mask) Display *display; GC gc; unsigned long foreground, background; int function; unsigned long plane_mask; XSetFunction(display, gc, function) Display *display; GC gc; int function; XSetPlaneMask(display, gc, plane_mask) Display *display; GC gc; unsigned long plane_mask; XSetForeground(display, gc, foreground) Display *display; GC gc; unsigned long foreground; XSetBackground(display, gc, background) Display *display; GC gc; unsigned long background; ARGUMENTS
background Specifies the background you want to set for the specified GC. display Specifies the connection to the X server. foreground Specifies the foreground you want to set for the specified GC. function Specifies the function you want to set for the specified GC. gc Specifies the GC. plane_mask Specifies the plane mask. DESCRIPTION
The XSetState function sets the foreground, background, plane mask, and function components for the specified GC. XSetState can generate BadAlloc, BadGC, and BadValue errors. XSetFunction sets a specified value in the specified GC. XSetFunction can generate BadAlloc, BadGC, and BadValue errors. The XSetPlaneMask function sets the plane mask in the specified GC. XSetPlaneMask can generate BadAlloc and BadGC errors. The XSetForeground function sets the foreground in the specified GC. XSetForeground can generate BadAlloc and BadGC errors. The XSetBackground function sets the background in the specified GC. XSetBackground can generate BadAlloc and BadGC errors. DIAGNOSTICS
BadAlloc The server failed to allocate the requested resource or server memory. BadGC A value for a GContext argument does not name a defined GContext. BadValue Some numeric value falls outside the range of values accepted by the request. Unless a specific range is specified for an argu- ment, the full range defined by the argument's type is accepted. Any argument defined as a set of alternatives can generate this error. SEE ALSO
XCreateGC(3X11), XQueryBestSize(3X11), XSetArcMode(3X11), XSetClipOrigin(3X11), XSetFillStyle(3X11), XSetFont(3X11), XSetLineAt- tributes(3X11), XSetTile(3X11) Xlib - C Language X Interface X Version 11 Release 6.6 XSetState(3X11)
All times are GMT -4. The time now is 03:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy