タグ

ブックマーク / tldp.org (2)

  • Process Substitution

    Chapter 23. Process SubstitutionPiping the stdout of a command into the stdin of another is a powerful technique. But, what if you need to pipe the stdout of multiple commands? This is where process substitution comes in. Process substitution feeds the output of a process (or processes) into the stdin of another process. Template Command list enclosed within parentheses>(command_list) <(command_li

    shuzo_kino
    shuzo_kino 2015/04/21
    “Process substitution feeds the output of a process (or processes) into the stdin of another process.” アィエエ…アィエエ…(失禁
  • Advanced Bash-Scripting Guide

    This tutorial assumes no previous knowledge of scripting or programming, yet progresses rapidly toward an intermediate/advanced level of instruction . . . all the while sneaking in little nuggets of UNIX® wisdom and lore. It serves as a textbook, a manual for self-study, and as a reference and source of knowledge on shell scripting techniques. The exercises and heavily-commented examples invite ac

    shuzo_kino
    shuzo_kino 2014/06/08
    BASHの便利帳。色々マニアックな記法が揃っている
  • 1