Skip to content

Instantly share code, notes, and snippets.

@saxsir
Last active November 2, 2015 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saxsir/0a334aae9e42451dfae1 to your computer and use it in GitHub Desktop.
Save saxsir/0a334aae9e42451dfae1 to your computer and use it in GitHub Desktop.
コマンドラインからファイルを1行ずつ読んで逐次処理するワンライナー
cat foo.txt | while read line; do echo $line; done
foo
bar
baz
run:
cat foo.txt | while read line; do echo $$line; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment