4
4

More than 5 years have passed since last update.

findコマンドの結果をダブルクリックした時に既に絶対PATHは得られている!!

Last updated at Posted at 2014-04-04

findコマンドの結果をダブルクリックした時に既に絶対PATHは得られている!!

  • カレントディレクトリで find したら ./hoge とかになっててしょんぼりんこ
    • このままだと新規ファイルを開いてしまってつらたん
  • そんな時はpwd食わせりゃいいお
$ find `pwd` -name foo
  • エイリアス貼っとけば、もっと幸せになれるかな?
$ alias findpf='find `pwd` -type f -name '
$ alias findpd='find `pwd` -type d -name '
  • Windows?アイツはダメだ。
4
4
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
4
4