zoukankan      html  css  js  c++  java
  • Linux命令之yes

    yes命令用于重复输出字符串(output a string repeatedly until killed)。这个命令可以帮你自动回答命令行提示,例如,进入一个含有多个文件的目录,执行 "yes | rm -i *",所有的 rm: remove regular empty file `xxx'? 提示都会被自动回答 y。这在编写脚本程序的时候会很用处。yes命令还有另外一个用途,可以用来生成大的文本文件。(-i交互式)

    常用参数

    yes命令不指定参数时,不断的输出y;指定字符串参数时,就不断的输出该字符串。要终止输出,必须杀掉该进程,比如按Ctrl+C,或killall yes。(Repeatedly output a line with all specified STRING(s), or ‘y’.)比如:要不断输出n时,输入yes n。

    使用示例

    示例一 删除文件时自动回答y

    [root@web ~]# ls -l *.txt 
    -rw-r--r-- 1 root root     7 11-28 11:54 1.txt
    -rw-r--r-- 1 root root 10217 07-06 13:10 data.txt
    [root@web ~]# yes | rm -i *.txt 
    rm:是否删除 一般文件  "1.txt" | rm -i.txt”? rm:是否删除 一般文件 “data.txt”? [root@web ~]# yes | rm -i *.txt       
    rm: lstat “*.txt” 失败: 没有那个文件或目录
    [root@web ~]# ls -l *.txt      
    ls: *.txt: 没有那个文件或目录
    [root@web ~]#

    示例二 生成大的文本文件

    下面的脚本把yes命令输出的内容保存到文件中,然后1秒钟之后停止输出。在这台测试机器上,生成了一个93M的文件。

    1. #!/bin/sh  
    2.   
    3. yes hello >hello.txt &  
    4. PID=$!  
    5.   
    6. sleep 1  
    7. kill $PID  
    8.   
    9. ls -l hello.txt  

    转自:http://codingstandards.iteye.com/blog/826940

  • 相关阅读:
    msgs no .h file
    我们为之奋斗过的C#之---简单的库存管理系统
    我们为之奋斗过的C#-----C#的一个简单理解
    套接字之sendto系统调用
    套接字之msghdr结构
    套接字之select系统调用
    套接字之close系统调用
    TCP之listen&backlog
    套接字之相关系统调用的调用流程
    套接字之shutdown系统调用
  • 原文地址:https://www.cnblogs.com/youxin/p/3582175.html
Copyright © 2011-2022 走看看