Renice command with input argument as a file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Renice command with input argument as a file
# 1  
Old 01-03-2014
Renice command with input argument as a file

Hi all

could you help me how to give pids in a file as an argument to renice command.


Thanks in Advance.. Smilie

Pradeep
# 2  
Old 01-03-2014
Use a while loop to read each PIDs from your input file into a variable and use that variable:
Code:
while read pid
do
   renice <inc> -p "$pid"
done < inputfile

# 3  
Old 01-03-2014
hey thanks for replying,

i used the same command, got the below error, please suggest.

line 3: inc: No such file or directory.

---------- Post updated at 09:54 AM ---------- Previous update was at 09:50 AM ----------

i have redirected all the pids to a file name nice,

created a script inthe file called script.
script is :

while read pid
do
renice <inc> -p "$pid"
done < nice

Please suggest if i missed some thing
# 4  
Old 01-03-2014
Replace <inc> with your nice value.

Check renice manual for further reference.
# 5  
Old 01-03-2014
thanks a lot dude... it worked. I forgot to add value...

I have another issue as well.. will be able to help me on that aswell ...

main issue am facing is,

1. few applications are starting with nice -20 as default instead of 0,
2. Also 2 users are getting started all apps with -20 instead of 0.

am not able to fix this checked my scripts, everything is the same.

as a temporary fix i am grepping the pids and using renice command manually (now using the script you gave).

can you help to fix it manually..

Thanks in advance..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Python script to grep fields and use values from file 1 as argument for another command

Hi Experts, I am working one one python script in version 3.x and 2.6. Need your support to complete it Basically for both commands i have telnet to device and run command and then receiving input File 1 and File 2 I have two commands, need to grep data and output in csv file. Next script/code... (0 Replies)
Discussion started by: as7951
0 Replies

2. Shell Programming and Scripting

How to iterate a function untill last argument with any order of input?

HI I need to get the function "kick" to get executed in any way the parameters are passed in to the function. The parameters are first stored in a dictionary self.otherlist = {} print self.otherlist self.populateTestList(self.system_type) print... (1 Reply)
Discussion started by: Priya Amaresh
1 Replies

3. UNIX for Beginners Questions & Answers

Creating file and passing argument to a command

Hi All, I am having command to run which will take argument as input file. Right now we are creating the input file by cat and executing the command ftptransfer -i input file cat >input file file1 file2 cntrl +d Is there a way I can do that in a single command like ... (1 Reply)
Discussion started by: arunkumar_mca
1 Replies

4. Shell Programming and Scripting

How to pass each line of a text file as an argument to a command?

I'm looking to write a script that takes a .txt filename as an argument, reads the file line by line, and passes each line to a command. For example, it runs command --option "LINE 1", then command --option "LINE 2", etc. I am fetching object files from a library file, I have all the object file... (2 Replies)
Discussion started by: Paul Martins
2 Replies

5. Shell Programming and Scripting

Check for spaces in input argument!

Hi guys, I have created a csh script which allows user to pass input argument with the script like: cluster_on_lev3.csh -t <value> -p <value> Example: cluster_on_lev3.csh -t 2.3 -p 0.05 Now I want to create an error code where if user passes input argument without spaces , the code... (16 Replies)
Discussion started by: dixits
16 Replies

6. Shell Programming and Scripting

Utilize input file in place of argument

First I apologize for my ignorance as I am very new to the world of UNIX but love it and have a huge desire to learn it. A question I have is if a Korn script utilizes/relies on an argument to run, can you add these into a file and pipe them to the script without changing anything inside the... (2 Replies)
Discussion started by: djzah
2 Replies

7. Shell Programming and Scripting

Cannot compare argument in if statement in csh/grep command if argument starts with “-“

If ($argv == “-debug”) then Echo “in loop” Endif But this is not working. If I modify this code and remove “-“, then it works. Similarly I am getting problem using grep command also Grep “-debug” Filename Can someone please help me on how to resolve these... (1 Reply)
Discussion started by: sarbjit
1 Replies

8. Shell Programming and Scripting

use input filename as an argument to name output file

I know this is a simple matter, but I'm new to this. I have a shell script that calls a sed script from within it. I want the output of the shell script to be based on the input file I pass as an argument to the original script. In other words... ./script.sh file.txt (script.sh calls sed... (2 Replies)
Discussion started by: estebandido
2 Replies

9. Shell Programming and Scripting

use argument file with sed command

I am trying to delete lines from a file with the sed command. I have two files. File a.txt 200,000 records. Here is a sample of the file. File a.txt 2401ABC0212345678 plus 250 characters of other data 2401ABC0212345678 plus 250 characters of other data 2402ABC0212345678 plus... (3 Replies)
Discussion started by: robbanigan
3 Replies

10. Programming

How do I input an argument in the main?

----------C program----------------------------- include <stdio.h> int main( int argc, char *argv ) { int i; for( i=0; i<argc; i++ ) printf("%\n", argv); return 0; } I wrote the C program above 'print.c'. Then, I compiled. (gcc -o print.o print.c)... (2 Replies)
Discussion started by: yhosun
2 Replies
Login or Register to Ask a Question