The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 12-09-2008
diddyp20 diddyp20 is offline
Registered User
  
 

Join Date: Dec 2008
Posts: 3
help

hello Im trying to run a script but it doesn't work.
this is the exercise:
Create an executable script file called “newname” that will perform the followings:
1. Rename a file upon the user’s request. If the file exists, prompt the user for confirmation before renaming the file. The screen should prompt the user for
a. “Name of file you want to rename.” Use the “\c” escape character.
b. “New name of file” Use the “\c” escape character.
c. “File Exist” to avoid overriding a file.
d. “File $oldname changed to $newname”
e. “Do you want to rename another file?” If the user selects “yes” the system should refresh the screen and if the user selects “no” the system should exit to the prompt sign.
f. Refresh the screen to go back to the menu until the user selects the exit option

this is what I did! but I have some message error at the line 22 and 23! can someone helps me?

#!/bin/sh

while [ 1==1 ]
do
echo " 1. Select R or r to rename your file"
echo " 2. select E or e to exit the screen"
echo "enter your choice: \c"
read option
case $option in
R|r)echo "name of the file you want to rename: \c"
read filename
echo "enter the new name: \c"
read newname
if [ -f "$newname" ]
then
echo "file already exits"
echo "are you sure you want to move this file to $newname?"
echo "input Y for yes and N for no: Control+C to cancel"
read answer
if [ $answer == [yY] ]
then
mv $file $filename
if [ $? ]
then
echo "Job failed"
else
echo "Job Done"
fi
fi
else
echo "Moving $filename $newname"
mv $filename $newname
sleep 2
if [ $? ]
then
echo "Job failed"
else
echo "Job Done"
fi
#sh rename
fi ;;
E|e) exit 0 ;;
esac
echo
done
exit
  #2 (permalink)  
Old 12-09-2008
joeyg's Avatar
joeyg joeyg is offline Forum Staff  
modérateur
  
 

Join Date: Dec 2007
Location: Home of 17-time world champion Boston Celtics
Posts: 1,311
Closed; duplicate posting

This is closed.
Please no duplicate posting per Forum Rules.
The UNIX and Linux Forums - Forum Rules
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 09:46 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0