[root@qiansw tmp]# cat test.py #這是一個python示例程式
#!/usr/bin/python
for i in range(0,5):
print i
[root@qiansw tmp]# ll
total 48
-rw-r--r-- 1 root root 48 Oct 30 11:04 test.py
[root@qiansw tmp]# chmod +x test.py #為指令碼增加執行許可權
[root@qiansw tmp]# ./test.py #這是第一種方法
0
1
2
3
4
[root@qiansw tmp]# python test.py #這是第二種方法,不用增加執行許可權
[root@qiansw tmp]# cat test.py #這是一個python示例程式
#!/usr/bin/python
for i in range(0,5):
print i
[root@qiansw tmp]# ll
total 48
-rw-r--r-- 1 root root 48 Oct 30 11:04 test.py
[root@qiansw tmp]# chmod +x test.py #為指令碼增加執行許可權
[root@qiansw tmp]# ./test.py #這是第一種方法
0
1
2
3
4
[root@qiansw tmp]# python test.py #這是第二種方法,不用增加執行許可權
0
1
2
3
4