91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux中如何使用script命令

發布時間:2021-10-23 15:43:51 來源:億速云 閱讀:496 作者:小新 欄目:系統運維

這篇文章將為大家詳細講解有關Linux中如何使用script命令,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

如何使用 script 命令?

默認情況下,直接輸入 script 這個命令即可,它會在當前目錄自動創建一個 typescript  文件,之后你在此終端的所有操作都會被記錄在這個文件里。

記錄文件是一個文本文件,可以使用任意的文本工具打開查看。

如果要退出記錄,可以在終端里按快捷鍵 ctrl + D 或直接輸入 exit 。在退出 script 前,你會發現,記錄文件大小為 0  Kb,當退出后,文件大小會變大。

[alvin@VM_0_16_centos test]$ script Script started, file is typescript [alvin@VM_0_16_centos test]$ echo hello hello [alvin@VM_0_16_centos test]$ ls test1.py  test2  test2.cpp  test2.py  test3  test3.c  test.py  typescript  WeixinBot  wxpy  wxRobot [alvin@VM_0_16_centos test]$ exit exit Script done, file is typescript

如果我們想要自己起個文件名,或者將文件放在其它位置,那么我們可以直接在 script 后面跟上文件名即可。

[alvin@VM_0_16_centos test]$ script ~/alvin-script Script started, file is /home/alvin/alvin-script [alvin@VM_0_16_centos test]$ ll total 64 -rw-rw-r--  1 alvin alvin    21 Nov 10 09:40 test1.py -rwxrwxr-x  1 alvin alvin 14074 Dec 31 07:35 test2 -rw-rw-r--  1 alvin alvin   403 Dec 31 07:35 test2.cpp -rw-rw-r--  1 alvin alvin  2093 Nov 10 10:50 test2.py -rwxrwxr-x  1 alvin alvin  8553 Jan  7 20:03 test3 -rw-rw-r--  1 alvin alvin    78 Jan  7 20:03 test3.c -rw-rw-r--  1 alvin alvin    94 Nov  9 23:25 test.py -rw-rw-r--  1 alvin alvin   489 Jan 11 12:07 typescript drwxrwxr-x  6 alvin alvin  4096 Nov 10 11:19 WeixinBot drwxrwxr-x  6 alvin alvin  4096 Nov 10 11:30 wxpy drwxrwxr-x 11 alvin alvin  4096 Nov 10 11:34 wxRobot [alvin@VM_0_16_centos test]$ echo hello hello [alvin@VM_0_16_centos test]$ exit exit Script done, file is /home/alvin/alvin-script

學會這兩個基本操作,可以應付很多場景下需要記錄終端的場景。

如何使用 script 與同事協作?

現在有一項工作,需要與同事一起協作,我完成一半,他完成另一半。

首先,我來做我的工作,用 script 記錄一下我的工作過程:

[alvin@VM_0_16_centos test]$ script cooperate-job Script started, file is cooperate-job [alvin@VM_0_16_centos test]$ echo this is alvin_s job this is alvin_s job [alvin@VM_0_16_centos test]$ ls cooperate-job  test1.py  test2  test2.cpp  test2.py  test3  test3.c  test.py  typescript  WeixinBot  wxpy  wxRobot [alvin@VM_0_16_centos test]$ exit exit Script done, file is cooperate-job

工作完成之后,將記錄文件發給同事,他可以使用文本工具打開,就可以知道你的進度了,然后接著你的進度干活。

如果他要接著在你的記錄文件里記錄他的操作的話,可以加一個 -a 選項,即 append 的縮寫。

[alvin@VM_0_16_centos test]$ script -a cooperate-job Script started, file is cooperate-job [alvin@VM_0_16_centos test]$ echo this is harry_s job this is harry_s job [alvin@VM_0_16_centos test]$ pwd /home/alvin/test [alvin@VM_0_16_centos test]$ exit exit Script done, file is cooperate-job

請他人遠程協助時,如何記錄他的操作過程?

讓他人登陸到自己的電腦,如果是熟人還好,是陌生人的話心里多少會有些不踏實。為了放心一下,我們還是偷偷記錄一下他的所作所為吧。

我們可以將 script 命令添加到 Shell 配置文件中,用戶一旦登錄進來,script 命令就自動啟動,并記錄操作者的所有操作過程。

實現這個目的,我們可以修改 .bash_profile 文件。

vim ~/.bash_profile

在最后一行,我們將 script 命令添加進去:

/usr/bin/script -qa your_path #補齊自己的路徑

然后保存,使用 source 或 . 命令使它生效。下次其它人登錄到系統時,script 就會自動運行,并將記錄文件保存在你所指定的位置。

在這里,-q 選項代表靜默記錄,對方將不知道你在后臺記錄。如果不使用這個選項,則他會收到這個提示:

Last login: Fri Jan 11 15:13:37 2019 from 119.33.28.6 Script started, file is /home/alvin/test/script-file  #提示 [alvin@VM_0_16_centos ~]$

關于“Linux中如何使用script命令”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

琼中| 麻栗坡县| 萨迦县| 阿坝| 石城县| 泸西县| 紫金县| 东明县| 沈阳市| 岳池县| 内黄县| 灵武市| 麻江县| 张家港市| 石河子市| 鄢陵县| 皮山县| 鄂伦春自治旗| 洞口县| 耿马| 昆山市| 青州市| 玛纳斯县| 涟水县| 张家界市| 庆城县| 大兴区| 崇义县| 盐城市| 兴和县| 凤城市| 彰化市| 南木林县| 黔东| 琼海市| 霍山县| 河东区| 新龙县| 南宫市| 读书| 亚东县|