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

📄 ex-11-03_while.sh

📁 Berkely的学生写的
💻 SH
字号:
#!/bin/sh# Chapter 11 - Reading User Input# This example demonstrates reading user input in a while loop# As with the previous example, you may have to change the line:##   /bin/echo "Enter the name of a directory where are your files located:?\c "## to##   /bin/echo -n "Enter the name of a directory where are your files located:?\c "## in order for the output to match the output in the bookRESPONSE=while [ -z "$RESPONSE" ] ; do    /bin/echo "Enter the name of a directory where are your files located:?\c "    read RESPONSE    if [ ! -d "$RESPONSE" ] ; then        echo "ERROR: Please enter a directory pathname."        RESPONSE=    fidone

⌨️ 快捷键说明

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