扩展阅读
  • linux哪个版本好?linux操作系统版本详细介绍及选择方案推荐
  • 在win分区上安装linux和独立分区安装linux有什么区别?可以同时安装吗?(两个linux系统)
  • secureCRT下Linux终端汉字乱码解决方法
  • 在虚拟机上安装的linux上,能像真的linux系统一样开发linux程序么?
  • Linux常用命令介绍:更改所属用户群组或档案属性
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在有linux的盘)
  • linux命令大全详细分类介绍及常用linux命令文档手册下载
  • 红旗Linux主机可以通过127.0.0.1访问,但如何是连网的Win2000机器通过Linux的IP去访问Linux
  • Linux Kernel 'sctp_v6_xmit()'函数信息泄露漏洞
  • 安装vmware软件,不用再安装linux系统,就可以模拟linux系统了,然后可以在其上学习一下LINUX下的基本操作 了?
  • Linux c++虚函数(virtual function)简单用法示例代码
  • 我重装window后,把linux的引导区覆盖了,进不了linux怎么办?急啊,望热心的人帮助 (现在没有linux的盘,只有DOS启动盘)
  • Docker官方镜像将会使用Alpine Linux替换Ubuntu
  • 如何让win2000和linux共存。我装好WIN2000,再装LINUX7.0,但LILO只能找到LINUX,不能引导WIN2000
  • Linux下chmod命令详细介绍及用法举例
  • 在windows中的VMware装了个linux,主板有两个串口,能做windows和linux的串口通信测试么,怎么测试这两个串口在linux是有效
  • linux僵尸(zombie)进程介绍及清除
  • 我们网站的服务器从windows2000迁往linux,ASP程序继续使用,可是我连LINUX的皮毛都不了解,大家告诉我LINUX下怎么建网站??
  • Linux/CentOS下的CST和UTC时间的区别以及不一致的解决方法
  • 中文Linux与西文Linus分别哪一个版是权威?I认为是:中科软的白旗Linux与西文的绿帽子Linux!大家的看法呢?
  • Linux c++库boost unordered_set数据插入及查找代码举例
  • Windows2000和Linux双操作系统,Linux系统有问题,我直接把Linux分区删除后,Windows2000进不去了,怎么办???
  •  
    当前位置:  操作系统>Linux

    linux下利用(cat,strings,head,sed)命令生成随机字符串

     
        发布时间:2013-10-19  


        本文导语: strings命令帮助:Usage: strings [option(s)] [file(s)] Display printable strings in [file(s)] (stdin by default) The options are: -a - --all Scan the entire file, not just the data section -f --print-file-name Print the name of the file before each string -n --byte...

    strings命令帮助:

    Usage: strings [option(s)] [file(s)]
     Display printable strings in [file(s)] (stdin by default)
     The options are:
      -a - --all                Scan the entire file, not just the data section
      -f --print-file-name      Print the name of the file before each string
      -n --bytes=[number]       Locate & print any NUL-terminated sequence of at
      -<number>                 least [number] characters (default 4).
      -t --radix={o,d,x}        Print the location of the string in base 8, 10 or 16
      -o                        An alias for --radix=o
      -T --target=<BFDNAME>     Specify the binary file format
      -e --encoding={s,S,b,l,B,L} Select character size and endianness:
                                s = 7-bit, S = 8-bit, {b,l} = 16-bit, {B,L} = 32-bit
      @<file>                   Read options from <file>
      -h --help                 Display this information
      -v --version              Print the program's version number


    head命令用法:

    用法:head [选项]... [文件]...
    Print the first 10 lines of each FILE to standard output.
    With more than one FILE, precede each with a header giving the file name.
    With no FILE, or when FILE is -, read standard input.
    长选项必须用的参数在使用短选项时也是必须的。
      -c, --bytes=[-]N         print the first N bytes of each file;
                                 with the leading `-', print all but the last
                                 N bytes of each file
      -n, --lines=[-]N         print the first N lines instead of the first 10;
                                 with the leading `-', print all but the last
                                 N lines of each file
      -q, --quiet, --silent    never print headers giving file names
      -v, --verbose            always print headers giving file names
          --help     显示此帮助信息并退出
          --version  输出版本信息并退出
    N may have a multiplier suffix: b 512, k 1024, m 1024*1024.


    sed命令用法:

    Usage: sed [OPTION]... {script-only-if-no-other-script} [input-file]...
      -n, --quiet, --silent
                     suppress automatic printing of pattern space
      -e script, --expression=script
                     add the script to the commands to be executed
      -f script-file, --file=script-file
                     add the contents of script-file to the commands to be executed
      -i[SUFFIX], --in-place[=SUFFIX]
                     edit files in place (makes backup if extension supplied)
      -c, --copy
                     use copy instead of rename when shuffling files in -i mode
                     (avoids change of input file ownership)
      -l N, --line-length=N
                     specify the desired line-wrap length for the `l' command
      --posix
                     disable all GNU extensions.
      -r, --regexp-extended
                     use extended regular expressions in the script.
      -s, --separate
                     consider files as separate rather than as a single continuous
                     long stream.
      -u, --unbuffered
                     load minimal amounts of data from the input files and flush
                     the output buffers more often
          --help     display this help and exit
          --version  output version information and exit
    If no -e, --expression, -f, or --file option is given, then the first
    non-option argument is taken as the sed script to interpret.  All
    remaining arguments are names of input files; if no input files are
    specified, then the standard input is read.


    利用以上命令组合生成随机字符串


    生成全字符随机的字串:

    cat /dev/urandom | strings -n C | head -n L

    生成数字加字母的随机字串:

    cat /dev/urandom | sed 's/[^a-zA-Z0-9]//g' | strings -n C | head -n L

    其中C表示字符串的字符数,L表示要生成多少行字符。


    • 本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
      本站(WWW.)站内文章除注明原创外,均为转载,整理或搜集自网络.欢迎任何形式的转载,转载请注明出处.
      转载请注明:文章转载自:[169IT-IT技术资讯]
      本文标题:linux下利用(cat,strings,head,sed)命令生成随机字符串
    相关文章推荐:
  • Linux下c基于openssl生成MD5的函数
  • Linux下如何生成桌面图标?
  • linux c 生成随机数srand函数和rand函数介绍及代码示例
  • c/c++ iis7站长之家
  • Linux下c/c++开发之程序崩溃(Segment fault)时内核转储文件(core dump)生成设置方法
  • 关于Linux下生成运行日志 的C函数
  • 高手帮忙啊!linux中用arm-linux-gcc编译生成的二进制文件怎么复制到开发板里?
  • Linux gcov 无法生成.gcda文件
  • Linux生成的.a文件可以直接用在windows上吗?
  • Linux新手,怎么清除configure之后生成的文件?
  • linux myeclipse hibernate 反向工程无法生成 hbm.xml文件
  • 编译生成.link后缀扩展名文件命令 linux
  • 在linux下,如何生成 debug 和 release 版本的代码?
  • 同一个开发包,为什么在linux下生成的动态库比windows上大这么多?
  • linux FC5下用程序生成的文件中,中文变成问号,怎么解决?
  • linux 编译的时候,如何与.a静态库做链接生成.elf文件?
  • linux 生成静态库的时候怎么连接别的静态库
  • 安装red hat linux9.0时如何生成BOOTSECT.LIN文件?
  • 关于linux下生成so文件的问题,请教高手
  • 请问linux服务端如何生成网页的缩略图?
  • linux 两个不同的key生成同样的消息队列ID?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3