SHELLwhilereadline用法
如下SHELL
#!/bin/sh
cat file | while read line 
do
echo "press any key"
read key
done
read key这条语句不起作用,到底怎么回事?file为一个文本文件
while read line
do
ehco "hello"
done < file
下面引用由yjlucky在 2002/10/09 09:07pm 发表的内容:
如下SHELL
#!/bin/sh
cat file | while read line 
do
...
read key 当然也是从file里读了.
在循环中用read可以用以下方法!
for line in `cat file`
do
echo "press any key"
read key
done
不行吧,那样line的内容就是一个个单词而不是一行行了。
楼主的意思好象是读完一行,敲任意键再读下一行吧?
line 的值时file全文不是一行。
程序的设计思路不是太好,若一定要这要作,也可以作到:
cat file | while read line
do
echo $line
(echo "press any key:c"; exec </dev/tty; read key)
done
高!
麻烦exec </dev/tty是做什么的?
我想应该是定向下一步的操作(read key)从键盘读输入吧
binary 说得对。
当需要对键盘输入进行判断并处理时,如下的脚本更好一点:
cat file | while read line
do
echo $line
echo " :: Please input any key(s):c"
str4read=""
while true
do
chr4read=`dd if=/dev/tty bs=1 count=1 2>/dev/null`
str4read=$str4read$chr4read
if [ "$chr4read" = "" ] ;then break; fi
do while语句怎么用
done
echo " :: |$str4read|"
done
SSH Secure Shell 3.0.0 Vulnerability Scanner
shell - ls的问题
shell - 用脚本实现分割文件
shell - 在awk中如何引用shell的变量
shell - eval用法三例
shell - shell简介
shell - 实现Hex和Dec转换
shell - linux Boot Scripts
shell - 请问trap的用法和其作用
shell - 用cshell逐行读文件逐行处理
shell - 停止终端多个进程
Linux的shell编程(四)
shell - ASH Shell的脚本编程
shell - 文件序列a1,a1000改成a1000?
shell - while循环中使用read

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。