Boston Linux & Unix (BLU) Home | Calendar | Mail Lists | List Archives | Desktop SIG | Hardware Hacking SIG
Wiki | Flickr | PicasaWeb | Video | Maps & Directions | Installfests | Keysignings
Linux Cafe | Meeting Notes | Blog | Linux Links | Bling | About BLU

BLU Discuss list archive


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

input from command line in bash



Stephen Adler <adler at stephenadler.com> writes:

> Basically I want to write a shell script which askes,
> "Are you sure you want to proceed? [N/y] " and then acts according to user
> input at the command line.


    getyN() {
    	while	echo -n "${@}"' (y/N) '>&2
    	do	read yn rest
    		case $yn in
    		[yY])	return 0			;;
    		*)	return 1
    		esac
    	done
    }
    
    if getyN "Are you your you want to proceed?" ; then
      echo launching missles now
    else
      echo "let's watch a movie instead"
    fi
    
    
(small Unix portability nit:  "echo -n" is not portable)
    
  

Regards,

--kevin
-- 
GnuPG ID: B280F24E                     And the madness of the crowd
alumni.unh.edu!kdc                     Is an epileptic fit
                                       -- Tom Waits


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.





BLU is a member of BostonUserGroups
BLU is a member of BostonUserGroups
We also thank MIT for the use of their facilities.

Valid HTML 4.01! Valid CSS!



Boston Linux & Unix / webmaster@blu.org