Sponsored Content
Top Forums Shell Programming and Scripting Help with shell script handling processes Post 302966324 by sea on Wednesday 10th of February 2016 09:03:32 PM
Old 02-10-2016
If i may propose a command povided by my visual toolset TUI.
Can not open the attached command_list.txt - for the provided code, i expected to have each "regular valid command" on a single line.

Once TUI is installed, place this where your other files are.
Code:
tmpdir=/tmp	# Dir for temp/work files
LIMIT=6 	# amount of background processes
C=0		# counter

# Create tempfiles, as the tool is based on 'scripts' not 'commands'
while read line
do
	echo "$line" > $tmpdir/$$.$C
	((C++))
done<<command_file.txt

# run all the commands/scripts, but only LIMIT processes
tui-bgjob-mgr -l $LIMIT $tmpdir/$$.*

# Remove the tempfiles/commands
rm $tmpdir/$$.*

Alternativly, you could try this:
Code:
while read cmd;do $cmd;done<<command_file.txt

Which is basicly the same as calling it like:
Code:
bash command_file.txt

Smilie

Hope this helps

Last edited by sea; 02-10-2016 at 11:09 PM..
This User Gave Thanks to sea For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

signal handling in shell script

Hi can any please tell me is it possible to catch the signal in a shell script like we do in C. if yes please give me some idea or a link. (4 Replies)
Discussion started by: Raom
4 Replies

2. Shell Programming and Scripting

Shell script creating too many processes.

I have a shell script that I am running every 60 seconds, but it is creating this process to the point that it is causing the server to perfrom poorly. Below is my script, what can I change to prevent this? while true do java -classpath .....( all my classes here) >/dev/null 2>&1 ... (3 Replies)
Discussion started by: Miller_K
3 Replies

3. Shell Programming and Scripting

Shell script file handling

Hi ! /bin/sh set logdir1 "logDir/local/logname" #write the filename into a file echo $logdir1 >> logname.txt how do i exec the above echo command (1 Reply)
Discussion started by: nathgopi214
1 Replies

4. Shell Programming and Scripting

shell script for getting pid of spawn processes from shell

Hi, I am new this forum. I request you peoples help in understanding and finding some solution to my problem. Here it goes: I need to perform this set of actions by writing a shell script. I need to read a config file for the bunch of processes to execute. I need to fecth the pid of... (4 Replies)
Discussion started by: sachin4sachi
4 Replies

5. Shell Programming and Scripting

BASH - Handling background processes - distributed processing

NOTE: I am using BASH and Solaris 10 for this. Currently in the process of building a script that has a main "watcher" daemon that reads a configuration file and starts background processes based on it's global configuration. It is basically an infinite loop of configuration reading. Some of the... (4 Replies)
Discussion started by: dcarrion87
4 Replies

6. Shell Programming and Scripting

Help with Handling multiple argument in shell script

Hi i have written a shell script that takes only single ip address from the user and calculates its latency and reliability, can you please tell me that what should be done if i want that user should enter 100 or 1000 ip address (5 Replies)
Discussion started by: Preeti_17
5 Replies

7. Shell Programming and Scripting

Shell script executed from Informatica ETL tool is spawning 2 processes for one script

Hi, I am having a shell script which has a while loop as shown below. while do sleep 60 done I am executing this script from Informatica ETL tool command task from where we can execute UNIX commands/scripts. When i do that, i am seeing 2 processes getting started for one script... (2 Replies)
Discussion started by: chekusi
2 Replies

8. Solaris

Script on Solaris spawning 2 processes for one shell script execution

Hi, I am having a shell script on Solaris 10 which has a while loop as shown below. #!/usr/bin/ksh # while do sleep 60 done Name of the shell script is coldcentric.sh. I executed script /DATAWAREHOUSE/LOAD/Scripts/coldcentric.sh from a command task in Informatica worklow as... (3 Replies)
Discussion started by: chekusi
3 Replies

9. Shell Programming and Scripting

Wait for one processes to complete in a shell script

Let's say I start process A.sh, then start process B.sh. I call both of them in my C.sh How can I make sure that B starts its execution only after A.sh finishes. I have to do this in loop.Execution time of A.sh may vary everytime. It is a parameterized script. (17 Replies)
Discussion started by: rafa_fed2
17 Replies

10. Shell Programming and Scripting

Issue handling single quoted argument in shell script.

Below is my script that works fine and prints the desired output: #!/bin/ksh echo "$1" | while IFS= read -r dirpath do echo "DIRR_PATH:$dirpath" install_dir=$install_dir" "$dirpath done echo "Desired Output:$install_dir" Output: ./loopissue.sh... (10 Replies)
Discussion started by: mohtashims
10 Replies
SANDBOX(8)							   User Commands							SANDBOX(8)

NAME
sandbox - Run cmd under an SELinux sandbox SYNOPSIS
sandbox [-C] [-c] [-s] [ -d DPI ] [-l level ] [[-M | -X] -H homedir -T tempdir ] [-I includefile ] [ -W windowmanager ] [ -w windowsize ] [[-i file ]...] [ -t type ] cmd sandbox [-C] [-c] [-s] [ -d DPI ] [-l level ] [[-M | -X] -H homedir -T tempdir ] [-I includefile ] [ -W windowmanager ] [ -w windowsize ] [[-i file ]...] [ -t type ] -S DESCRIPTION
Run the cmd application within a tightly confined SELinux domain. The default sandbox domain only allows applications the ability to read and write stdin, stdout and any other file descriptors handed to it. It is not allowed to open any other files. The -M option will mount an alternate homedir and tmpdir to be used by the sandbox. If you have the policycoreutils-sandbox package installed, you can use the -X option and the -M option. sandbox -X allows you to run X applications within a sandbox. These applications will start up their own X Server and create a temporary home directory and /tmp. The default SELinux policy does not allow any capabilities or network access. It also prevents all access to the users other processes and files. Files specified on the command that are in the home directory or /tmp will be copied into the sandbox directories. If directories are specified with -H or -T the directory will have its context modified with chcon(1) unless a level is specified with -l. If the MLS/MCS security level is specified, the user is responsible to set the correct labels. -h --help display usage message -H --homedir Use alternate homedir to mount over your home directory. Defaults to temporary. Requires -X or -M. -i --include Copy this file into the appropriate temporary sandbox directory. Command can be repeated. -I --includefile Copy all files listed in inputfile into the appropriate temporary sandbox directories. -l --level Specify the MLS/MCS Security Level to run the sandbox with. Defaults to random. -M --mount Create a Sandbox with temporary files for $HOME and /tmp. -s --shred Shred temporary files created in $HOME and /tmp, before deleting. -t --type Use alternate sandbox type, defaults to sandbox_t or sandbox_x_t for -X. Examples: sandbox_t - No X, No Network Access, No Open, read/write on passed in file descriptors. sandbox_min_t - No Network Access sandbox_x_t - Printer Ports sandbox_web_t - Ports required for web browsing sandbox_net_t - All network ports -T --tmpdir Use alternate temporary directory to mount on /tmp. Defaults to tmpfs. Requires -X or -M. -S --session Run a full desktop session, Requires level, and home and tmpdir. -w --windowsize Specifies the windowsize when creating an X based Sandbox. The default windowsize is 1000x700. -W --windowmanager Select alternative window manager to run within sandbox -X. Default to /usr/bin/matchbox-window-manager. -X Create an X based Sandbox for gui apps, temporary files for $HOME and /tmp, secondary Xserver, defaults to sandbox_x_t -d --dpi Set the DPI value for the sandbox X Server. Defaults to the current X Sever DPI. -c --cgroups Use control groups to control this copy of sandbox. Specify parameters in /etc/sysconfig/sandbox. Max memory usage and cpu usage are to be specified in percent. You can specify which CPUs to use by numbering them 0,1,2... etc. -C --capabilities Use capabilities within the sandbox. By default applications executed within the sandbox will not be allowed to use capabilities (setuid apps), with the -C flag, you can use programs requiring capabilities. SEE ALSO
runcon(1), seunshare(8), selinux(8) AUTHOR
This manual page was written by Dan Walsh <dwalsh@redhat.com> and Thomas Liu <tliu@fedoraproject.org> sandbox May 2010 SANDBOX(8)
All times are GMT -4. The time now is 05:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy