📄 ex-11-03_while.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 + -