Python スクリプトから端末のディレクトリを変更しようとしています。プログラムは正常に実行されますが、端末のディレクトリは変更されません。これがプログラムです。
os
path = "/home/najeeb/Desktop/project/scan"
r = os.getcwd()
print "\n Current working directery is %s \n" % r
os.chdir(path)
retval = os.getcwd()
print "Directery changes successfull %s \n" % retval