伺服器命令列常用的指令

learning_always發表於2020-11-05

1.進入伺服器

ssh  -p   XXXXX(埠號)  XXX@202.119.84.91(使用者名稱@IP地址)

2.檢視當前所在路徑裡包含的檔案

ls

3.查詢絕對路徑

pwd

4.編輯一個python檔案

1.開啟檔案
vim demo.py
2.編輯
輸 i
3.終止
輸 Esc
4.儲存並退出
輸    :wq   最後Enter
5 不儲存退出
輸   :q   然後Enter
6.強制退出
輸  :q !

5.執行python檔案

python demo.py

6.建一個shell指令碼跑python 程式

1.新建一個shell指令碼
vim test.sh
2.進入shell編輯介面
輸 i 進行編輯
3.編輯
#!/bin/sh
python   ./././demo.py
4.儲存並退出
輸 :wq 然後Enter
5.重回命令列
chmod u+x test.sh
6.執行shell指令碼
./job.sh

相關文章