LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 04-16-2003, 03:02 PM   #1
hamster
Member
 
Registered: Apr 2003
Location: Waterford, Ireland
Distribution: Mandrivia 2006.1, Ubuntu 7.10
Posts: 188

Rep: Reputation: 30
Shell program error, can anyone see it?


Hi,

I have a problem trying to run this example safe delete program.
I get an error on line 18:

./rmf: line20: syntax error near unexpected token 'newline'
./rmv: line20: 'easc'

line 20 is end of 1st case statement. It's an example I'm trying to work through to understand and run. I have Redhat 8, maybe "OpenLinux" uses different syntax for the shell. Can anyone see offhand what is not liked about this?

Thanks!

The program in full:

#!/bin/bash
# rmv - a safe delete program
# uses a trash directory under your home directory
mkdir $HOME/.trash 2>/dev/null # if dir exists, discard errors

# four internal script vars
cmdlnopts=false
delete=false
empty=false
list=false

# get any command-line options
while getopts "dehl" cmdlnopts; do
case "$cmdlnopts" in
d) /bin/echo "deleting: \c" $2 $3 $4 $5 ; delete=true ;;
e) /bin/echo "emptying the trash..." ; empty=true ;;
h) /bin/echo "safe file delete v1.0"
/bin/echo "rmv -d[elete] -e[mpty] -h[elp] -l[ist] file1-4" ;;
l) /bin/echo "your .trash directory contains:" ; list=true ;;
easc # this is line 20
done

#d - delete any files found on the command line
if [ $delete = true ]
then
mv $2 $3 $4 $5 $HOME/.trash
/bin/echo " rmv finished."
fi

#e - empty the trash?
if [ $empty = true ]
then
/bin/echo "empty the trash? \c"
read answer
case "$answer" in
y) rm -fr $HOME/.trash/* ;;
n) /bin/echo "trashcan delete aborted." ;;
easc
fi

# l - show any files in the .trash directory
if [ $list = true ]
then
ls -l $HOME/.trash
fi
 
Old 04-16-2003, 03:07 PM   #2
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
try esac instead of easc :)

Cheers,
Tink
 
Old 04-16-2003, 03:10 PM   #3
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
lol

try
"esac"
not
"easc"

note most statements end in reverse
if fi
case esac

DOH! beaten again!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
SHell program in c SatYr_84 Linux - Software 1 10-03-2005 05:49 PM
can't start program from shell roxxe1 Linux - General 11 04-24-2005 07:58 PM
opening a program from shell hari78 Linux - Newbie 4 03-08-2005 09:33 AM
HELP!! I need to program a shell pleowulf Programming 2 02-11-2005 01:12 PM
Shell Program Veteq Programming 12 08-18-2004 07:20 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 11:02 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration