Skip to content

Instantly share code, notes, and snippets.

@devlights
Created August 13, 2019 05:48
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 devlights/0b7e88e7c3e6b561329e9bc4fb1f2851 to your computer and use it in GitHub Desktop.
Save devlights/0b7e88e7c3e6b561329e9bc4fb1f2851 to your computer and use it in GitHub Desktop.
find コマンドの結果をパイプで繋いで vim に流す

find コマンドの結果をパイプで繋いで vim に流す

find . -name xxxx | xargs -o vim

xargs コマンドに -o オプションをつけること。これをつけないと標準入力がおかしくなって、以降のターミナルのコマンド入力ができなくなる

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment