Script doesn't start and displays number


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Script doesn't start and displays number
# 1  
Old 04-16-2020
Script doesn't start and displays number

Hi All, I am trying to run the script below. Look below it just gives the number and doesnt run. When I did 'ps' for the user
it is giving me bunch of root user . I don't understand this.What might be making the script not run

Code:
sudo -u fabuser ./dailyEasiRestart.sh rdsprd &
[5] 25655
-bash-4.2$ ps -ef| grep fabuser
root     22479 57230  0 18:52 pts/0    00:00:00 sudo -u fabuser ./dailyEasiRestart.sh rdsv
root     23237 57230  0 18:55 pts/0    00:00:00 sudo -u fabuser ./dailyEasiRestart.sh rdsv
root     23264 57230  0 18:55 pts/0    00:00:00 sudo -u fabuser ./dailyEasiRestart.sh rdsprd
root     25000 57230  0 19:02 pts/0    00:00:00 sudo -u fabuser ./dailyEasiRestart.sh rdsv
root     25655 57230  0 19:05 pts/0    00:00:00 sudo -u fabuser ./dailyEasiRestart.sh rdsprd
f5254757 25683 57230  0 19:05 pts/0    00:00:00 grep --color=auto fabuser

[5]+  Stopped                 sudo -u fabuser ./dailyEasiRestart.sh rdsprd
-bash-4.2$ ps -u fabuser

# 2  
Old 04-16-2020
It does not run in the background because it wants to read something from the terminal (stdin or direct tty).
With the fg command you can move one of the bg jobs to the foreground (and maybe enter something or give it a Ctrl-D).

Without knowing the script I cannot say where exactly the waiting occurs.
# 3  
Old 04-16-2020
Hi

Since we all can read your computer its files, we know exactly what the cause is.
Not!

Please share the code of the script (in code tags -> advanced post/reply).
Otherwise we cant help.
# 4  
Old 04-17-2020
Thanks for all your replies. I got sorted it out.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script Output Displays Multiple Text

Hello there, I'm using a read-while loop to preserve the word Failed within a text file. For example, if the word Failed exist twice in a single text file, my STDOUT should re-direct to a new text file and display Failed twice. My output is attached to this thread. I would like output to... (4 Replies)
Discussion started by: SysAdminRialto
4 Replies

2. Shell Programming and Scripting

The difference between end number in the early row and the start number in the next

Hi Power User, I'm trying to compute this kind of text file format: file1: jakarta 100 150 jakarta 170 210 beijing 220 250 beijing 260 280 beijing 290 320 new_york 330 350 new_york 370 420 tokyo 430 470 tokyo 480 ... (2 Replies)
Discussion started by: anjas
2 Replies

3. Shell Programming and Scripting

Start scripts if it doesn't run on other node

Hello community, I created a script to simply query DB and then analize data. The environment where the script will works is two RedHat machines that access both to an external database. My script runs from the first crontab node. But what about if the first node goes down? What I need is copy... (2 Replies)
Discussion started by: Lord Spectre
2 Replies

4. Shell Programming and Scripting

Script that displays contents of a directory

Hello all! I am writing a script that takes in a directory name as input and if the directory exists, it shows the files inside the directory here is what I have so far (incomplete) (mostly like pseudocode) #/bin/sh echo Please enter the name of a directory read dir grep $dir... (2 Replies)
Discussion started by: subway69
2 Replies

5. Shell Programming and Scripting

start line numbering with arbitrary number?

Hi, I want to do the following: Extract some lines from different files and copy them into one file, with the first column being the line number. I do this with cat file1 file2 file3 |grep 'xxx' |nl > output.file Works fine. But if I want to add data of interest from a fourth file to the... (2 Replies)
Discussion started by: paracetamol
2 Replies

6. Shell Programming and Scripting

count the number of lines that start with the number

I have a file with contents similar to this. abcd 1234 4567 7666 jdjdjd 89289 9382 92 jksdj 9823 298 I want to write a shell script which count the number of lines that start with the number (disregard the lines starting with alphabets) (1 Reply)
Discussion started by: grajp002
1 Replies

7. Solaris

Number of files - in start of year

Is there any way to find "Number of files" that exists on my solaris parition in the starting of 2009 year ? I know ctime or mtime will not help and unix wouldnt store creation time. Only hope i can see ( and i am not sure if that will help ) is that my system is up from last 2 years without... (5 Replies)
Discussion started by: rajwinder
5 Replies

8. Shell Programming and Scripting

Ksh Script to get the start minute of n number of process

How can i write a script.? which lists all X process and gets the start minute of each of them. thanks (1 Reply)
Discussion started by: Anteus
1 Replies

9. UNIX for Dummies Questions & Answers

Displays line number 1000 to 2000

Hi, I have 1 million records and want to extract lines betwen 10000 -20000 and put it in another file. Could you please suggest a command for this. Thanks in advance (3 Replies)
Discussion started by: unxusr123
3 Replies

10. UNIX for Dummies Questions & Answers

Why doesn't sort -k $number work ??

I know this seems like a stupid question. I am trying to sort an address book. Some peole have first, middle and last names, some only have first and last names. Eg: Bob Hope John Bon Jovi etc .. I want to sort this by last name. I was thinking of using something like sort -k $variable... (5 Replies)
Discussion started by: kevin80
5 Replies
Login or Register to Ask a Question