![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| tell me whats wrong with this | nadman123 | Shell Programming and Scripting | 1 | 04-15-2008 12:58 AM |
| if [ -s $File ] ; Whats wrong in this ?? | varungupta | UNIX for Advanced & Expert Users | 5 | 08-21-2007 02:24 AM |
| Whats wrong with this script? | kayarsenal | Shell Programming and Scripting | 2 | 08-25-2006 10:58 AM |
| Whats wrong with the mv command | dsravan | Shell Programming and Scripting | 0 | 08-10-2006 04:30 PM |
| whats wrong with this awk??? | george_ | Shell Programming and Scripting | 5 | 04-04-2006 05:58 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
tell me whats wrong in this?
#! /bin/bash
head -5 $1 echo "remove $1 ?" read answer if ["$answer"=""] then echo invalid answer elif["$answer"="y"] rm $1 echo "$1 is deleted" elif["$answer"="n"] then echo file is not deleted else echo "invalid answer" fi What i really want this to do is to ask to delete the file or not..it says something wrong with the line9..i cant see anything wrong there..guys please help me.. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|