如何將包含子目錄的整個目錄添加到我的路徑中?我需要它從我的python目錄得到至少2個深度。 python/x/y/MYEXE
和python/x/MYEXE
。謝謝!我知道如何添加它,我只需要所有的路徑。將包含子目錄的整個目錄添加到路徑
python
├── artist
│ ├── curses
│ └── draw
├── binary
├── check
│ ├── pycheck.py
│ └── README.md
├── classexample
│ └── myclass
├── clixr
│ ├── clix
│ └── crcards.json
├── conn4generator
├── conway
│ ├── cell_checker_lib.py
│ └── game
├── elementify
│ ├── elementify
│ └── elements.txt
├── encryption
│ ├── encoder1
│ │ ├── decode
│ │ └── encode
│ └── encoder2
│ ├── code
│ └── decode
您只需添加兩次即可。之前已經回答了很多次。 http://stackoverflow.com/questions/15508892/adding-directory-to-my-path-through-bash-profile-in-bash – SaintHax