Advanced Bash− Scripting Guide An in− depth exploration of the art of shell scripting Me

源代码在线查看: sayit

软件大小: 63 K
上传用户: xiaoy2000
关键词: 8722 exploration Scripting scripting
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/bin/sh				#Script name: sayit				echo  Type q to quit.				go=start				while [ -n "$go" ]	   # Make sure to double quote the variable 				do				    echo -n I love you.				    read word				    if  [ "$word" = q -o "$word" = Q ]				    then					echo "I'll always love you!"					go=				    fi				done							

相关资源