linux – 如何在bash脚本中使用文件描述符3中的“read”读取?

前端之家收集整理的这篇文章主要介绍了linux – 如何在bash脚本中使用文件描述符3中的“read”读取?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
http://bash.cyberciti.biz/file-management/shell-script-to-simulate-unix-more-command/
  1. #!/bin/bash
  2. # Write a shell script like a more command. It asks the user name,the
  3. # name of the file on command prompt and displays only the 15 lines of
  4. # the file at a time.
  5. # -------------------------------------------------------------------------
  6. # Copyright (c) 2007 nixCraft project <http://cyberciti.biz/fb/>
  7. # This script is licensed under GNU GPL version 2.0 or above
  8. # -------------------------------------------------------------------------
  9. # This script is part of nixCraft shell script collection (NSSC)
  10. # Visit http://bash.cyberciti.biz/ for more information.
  11. # -------------------------------------------------------------------------
  12.  
  13. counter=1
  14. echo -n "Enter a file name : "
  15. read file
  16.  
  17. if [ ! -f $file ]
  18. then
  19. echo "$file not a file!"
  20. exit 1
  21. fi
  22.  
  23. # read file line by line
  24. exec 3<&0
  25. while read line
  26. do
  27. # pause at line no. 15
  28. if [ $counter -eq 15 ]
  29. then
  30. counter=0 # reset counter
  31. echo " *** Press [Enter] key to continue ..."
  32. read -u 3 enterKey
  33. fi
  34. echo $line
  35. (( counter++ ))
  36. done < $file

这模拟了更多命令..
我收到这个错误..

read: 26: Illegal option -u

确保输入超过15行的文件名称..
另外我读了“阅读”的手册页,我没有得到像“-u”这样的选项..

那么,我如何使用文件描述符3(它是stdin的副本)中的“read”来读取.

解决方法

尝试
  1. read key <&3

猜你在找的Linux相关文章