10 More Discussions You Might Find Interesting
1. UNIX for Beginners Questions & Answers
hi
i have a alarm file mentioned as below
alarm_log.15122017
i want to fetch failure detail but script is not working .
kindly let me now where is the mistake
#!/bin/bash
cd /scripts/
DATE=`date "+ %d%m%Y"`
ls -lrt | grep -i "alarm_log.$DATE"
cat alarm_log.$DATE |grep -B 1... (6 Replies)
Discussion started by: scriptor
6 Replies
2. UNIX for Beginners Questions & Answers
Good Morning,
If I launch a script, for example ./backup.sh, will it continue to run if I log out and/or close the terminal? (2 Replies)
Discussion started by: Stellaman1977
2 Replies
3. Shell Programming and Scripting
I am using blow script :--
#!/bin/bash
FIND=$(ps -elf | grep "snmp_trap.sh" | grep -v grep) #check snmp_trap.sh is running or not
if
then
# echo "process found"
exit 0;
else
echo "process not found"
exec /home/Ketan_r /snmp_trap.sh 2>&1 & disown -h ... (1 Reply)
Discussion started by: ketanraut
1 Replies
4. Shell Programming and Scripting
Hi. A shell scripting newbie here. I am trying to write a script that will create a running total of Sales, and increment a counter for each Sales entry, but when I executed the program it never stopped.
counter=0
Sales=0
echo "enter sales price"
read sales
while
do
let counter=counter+1... (6 Replies)
Discussion started by: Ccccc
6 Replies
5. Shell Programming and Scripting
Hi All
Just have a doubt in running the script... I need to run two scripts... Am first running the setenv.sh as ./setenv.sh and the next script as ./script.sh.But after i run script.sh am getting an error as JAVA_HOME not set. I tried running the setenv.sh as . ./setenv.sh and ran ./script.sh... (1 Reply)
Discussion started by: Whiteboard
1 Replies
6. Solaris
Hi,
i have a script which need to do behave differently when run as a startup process from init.d/ rc2.d script and when run manually from shell.
How do i distinguish whether my script is run by init process or by shell??
Will the command
/proc/$$/psinfo | grep "myscript" work well???... (2 Replies)
Discussion started by: vickylife
2 Replies
7. UNIX for Dummies Questions & Answers
I have wriiten the following scripts in UNIX. The file name is bk.ksh
rman target=/ << EOF
RUN {
SHUTDOWN IMMEDIATE
STARTUP MOUNT
ALLOCATE CHANNEL ch1 device TYPE
DISK FORMAT '/u01/oradata/ora/%U';
BACKUP DATABASE PLUS ARCHIVELOG;
SQL'ALTER DATABASE OPEN'
;}
EXIT;
EOF
when i try... (8 Replies)
Discussion started by: manna
8 Replies
8. UNIX for Advanced & Expert Users
Hi,
Please I need your expert advise on how to prevent/lock from execution job1 while job2 is still running in Unix... THanks:) (3 Replies)
Discussion started by: tikang
3 Replies
9. Shell Programming and Scripting
as root on test files with
!#/bin/bash -x
I get my env echoed back to the screen, Have I wrote code that
is dangerous??
this dosen't show up if ran as non root user
heres what I get back:
test> ./rootf off
+ alias 'rm=rm -i'
+ alias 'cp=cp -i'
+ alias 'mv=mv -i'
+ ''
+ .... (5 Replies)
Discussion started by: vbslim
5 Replies
10. UNIX for Dummies Questions & Answers
Hi:
I'm trying to run a test.sh script that have all the rights
but when i try to run it with the root username or another user it says
NOT FOUND but i can edited and view it, i did chmod 777 to make it exe but still doesnt work. what can i do here?
Thanks in advance (2 Replies)
Discussion started by: tank
2 Replies