3
在ipython(0.10.2)中,我想運行bash shell樣式(或glob.glob)擴展。我想要做一些這樣的事情,讓爭論擴大化,就像他們會在bash中一樣。這可能嗎?從ipython運行glob風格擴展?
filenames = !ls *.sbet
run sbet.py $filenames
# fails because filenames is a list
# or the simpler case:
run sbet.py *.sbet
# failes with "*.sbet" being directly passed in without being expanded.
建議?謝謝!
太棒了,不知道這個關於ipython! :)(要找到所有很酷的東西的一些參考) –
我剛剛在http://ipython.org/ipython-doc/dev/interactive/shell.html看到,也有.p選項,以獲得結果爲某種「路徑對象」,儘管我不知道這意味着什麼。 –