0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

シェルで別ファイルに引数リストを書いておいて、1行ごとに処理をさせたい時のやつ

Posted at

別ファイルに引数リストを書いておいて、1行ごとに処理をさせたい時のやつ

$ cat list
001 aaaaa AAAAA
002 bbbbb BBBBB
003 ccccc CCCCC

$ cat list | xargs -n3 bash -c 'echo $1 $2 $0'
aaaaa AAAAA 001
bbbbb BBBBB 002
ccccc CCCCC 003
  • xargs に渡して bash で実行
    • -n3: 3つずつ読み出す
  • 渡す引数は $N (0から) で書けるので分かりやすい.順番も変えられる.
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?