2008/04/27

pwd, cd, ls in Python


PythonのIDLEでcshのpwd, cd, lsに相当するコマンドが判明しました。
まずおまじないとして,
from os import *
getcwd() ==> pwd
chdir("..") ==> cd ..
listdir (".") ==> ls

osモジュールの中の関数名を調べるコマンドは
dir (os)

ここまで分かれば、後はなんとかなりそうです。

I got Python command same function as pwd, cd, ls of csh.
from os import *
getcwd() ==> pwd
chdir("..") ==> cd ..
listdir (".") ==> ls

dir(os) shows all fucntions in os module. This enable me to find csh equivalent commands.

0 件のコメント: