Skip to content

Instantly share code, notes, and snippets.

@muumin
Last active September 16, 2020 03:22
Show Gist options
  • Select an option

  • Save muumin/5a6b7e61e0b66c8b0828da86a35f1c91 to your computer and use it in GitHub Desktop.

Select an option

Save muumin/5a6b7e61e0b66c8b0828da86a35f1c91 to your computer and use it in GitHub Desktop.
PATHのなかからプログラムファイルを検索するワンライナー
for binpath in `echo $PATH | awk '{cnt=split($0,path,":");for (i=1;i<=cnt;i++)print path[i]}'`; do echo $binpath; ls -la $binpath | grep node; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment