Skip to Content
bash shell脚本编程经典实例 (第2版)
book

bash shell脚本编程经典实例 (第2版)

by Carl Albing, JP Vossen
January 2021
Intermediate to advanced
581 pages
15h 7m
Chinese
Posts & Telecom Press
Content preview from bash shell脚本编程经典实例 (第2版)
448
17
ssh server14
ssh server15
ssh server16
17.24.4
 参考
man seq
man awk
comp.lang.awk FAQ
17.25
 模拟
DOS
pause
命令
17.25.1
 问题
你正在迁移
DOS/Windows
批处理文件,希望能够模拟
DOS
pause
命令。
17.25.2
 解决方案
可以在函数中使用
read -n1 -p
命令。
pause ()
{
read -n 1 -p 'Press any key when ready...'
}
-n
bash 2.04
引入的。如果必须省略
-n1
(说实话,你的
bash
版本太旧了,
该升级了),那么随后的提示信息需要进行修改
7
,因为只有按
Enter
键才能结束
输入。应该将命令改成:
read -p '
Press the ENTER key when ready
...'
17.25.3
 讨论
读取完
n
个字符或一个换行符后,
-n
nchars
选项会返回。因此,
-n1
会在(等待)用户按
下任意键之后返回。
-p
选项之后的字符串参数会出现在读取输入之前。在这个例子中,该
字符串和
DOS
pause
命令的输出相同。
17.25.4
 参考
help read
1.12
7
这里所说的提示信息指的是
'Press any key when ready...'
。——译者注
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

bash 网络安全运维

bash 网络安全运维

Paul Troncone, Carl Albing
Linux 内核观测技术BPF

Linux 内核观测技术BPF

David Calavera, Lorenzo Fontana

Publisher Resources

ISBN: 9787115553782