my first script (lol)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting my first script (lol)
# 1  
Old 09-05-2002
my first script (lol)

hey peeps

ive made my first script, its for my work made in HP-UX, kshell

anyways

the script copies 3 files from a spider system to the floppydrive of my collegeau, I want to check if there is a floppy in the drive otherwise the script just runs forever and I don't have that time a day Smilie,... anybody got a idea ?

thnx in advance

EJ
# 2  
Old 09-05-2002
this helps

Depends on how you copy the files.

If you mount the floppy first, before the copy, you get a error message on the mount command.

if you just copy a file to a device like cp <file> /dev/fd0/<file> you get a error message on the cp command.

You can test the exit-code of the last executed command, like

if [[ ! $? = 0 ]]
then
echo "error occured"
else
echo " no error"
fi

where $? stands for the exit code.
See also:
http://www.cs.princeton.edu/~jlk/kor...doc/man93.html

Last edited by janr; 09-05-2002 at 08:41 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script works fine as a standalone script but not as part of a bigger script

Hello all, I am facing a weird issue while executing a code below - #!/bin/bash cd /wload/baot/home/baotasa0/sandboxes_finance/ext_ukba_bde/pset sh UKBA_publish.sh UKBA 28082015 3 if then echo "Param file conversion for all the areas are completed, please check in your home directory"... (2 Replies)
Discussion started by: ektubbe
2 Replies

2. UNIX for Dummies Questions & Answers

Calling a script from master script to get value from called script

I am trying to call a script(callingscript.sh) from a master script(masterscript.sh) to get string type value from calling script to master script. I have used scripts mentioned below. #masterscript.sh ./callingscript.sh echo $fileExist #callingscript.sh echo "The script is called"... (2 Replies)
Discussion started by: Raj Roy
2 Replies

3. Shell Programming and Scripting

Script will keep checking running status of another script and also restart called script at night

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

Further understanding the Grep! lol

If I use the grep command for parsing files, does it stop parsing right after it finds the matching pattern or does it continue to parse that document? grep -l "status" *.xml (5 Replies)
Discussion started by: emc^24sho
5 Replies

5. Shell Programming and Scripting

This script cut size of files "Lol" change string in files

Basic: find . -type f -name “*.txt” -print | awk '{gsub("Ontem", "AntesdeOntem", $0); print > FILENAME}' *.txt The idea is in folder /home/myapontamentos I have some files and i need to change in all them the word "ontem" to "antesdeontem". But bigger files are cut (size i mean)... (4 Replies)
Discussion started by: single
4 Replies

6. Shell Programming and Scripting

create a shell script that calls another script and and an awk script

Hi guys I have a shell script that executes sql statemets and sends the output to a file.the script takes in parameters executes sql and sends the result to an output file. #!/bin/sh echo " $2 $3 $4 $5 $6 $7 isql -w400 -U$2 -S$5 -P$3 << xxx use $4 go print"**Changes to the table... (0 Replies)
Discussion started by: magikminox
0 Replies
Login or Register to Ask a Question