⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 months

📁 Advanced Bash&#8722 Scripting Guide An in&#8722 depth exploration of the art of shell scripting Me
💻
字号:
#!/bin/sh# Script name: monthsfor month in Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Decdo    for week in  1 2 3 4     do	echo -n "Processing the month of $month. O.K.? "	read ans	if [ "$ans" = n  -o -z "$ans" ]	then	    continue 2	else	    echo -n "Process  week $week of $month? "	    read ans	    if [ "$ans" = n -o -z "$ans"  ] 	    then		continue	    else		echo "Now processing week $week of $month."		sleep 1		# Commands go here		echo  "Done processing..."	    fi	fi    donedone

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -