Linux基礎命令 get獲取ftp檔案

2022-08-28 08:51:09 字數 3173 閱讀 6998

get

使用lftp登入ftp伺服器之後,可以使用get指令從伺服器獲取檔案。

1、語法

get [-e]  [-a]  [-c] [-o base]  rfile  [-o lfile]

2、選項列表

選項說明

-o

指定輸出檔案的名字,不指定則使用原來的名字

-c

如果失敗,持續獲取

-e

獲取之後,刪除原始檔

-a

使用ascii模式

-o

指定輸出檔案存放的目錄

3、例項

1)獲取檔案,指定儲存的名字

[root@localhost weijie]#lftp 192.168.1.8                  //登入ftp伺服器

lftp 192.168.1.8:~>ls

drwxr-xr-x    2 0        0            4096 aug 14 06:38 pub

lftp 192.168.1.8:/>cd pub/                                  //切換目錄

lftp 192.168.1.8:/pub>ls                                    //檢視檔案

-rwxrwxrwx    1 0        0        2375494044 aug 14 06:38 1.zip

-rw-r--r--    1 0       0               0 aug 14 03:38 test.c

lftp 192.168.1.8:/pub>get test.c -o testtt.c            //獲取檔案,儲存名字為testtt.c

lftp 192.168.1.8:/pub>quit                                  //退出

[root@localhost weijie]#ls                                  //檢視內容,已經獲取到檔案。檔案儲存在當前目錄

1   11.c  1.zip  2.c.bz2  4.c  6.c~  rec000012.c.bz2  testtt.c

1.  1.c   2.c    3.c      5.c  col   res.zip

2)獲取檔案,指定儲存位置 

[root@localhost weijie]#lftp 192.168.1.8                //登入伺服器

lftp 192.168.1.8:~>cd pub/                                  //切換目錄

lftp 192.168.1.8:/pub>get  -o / test.c                    //獲取檔案,指定儲存位置到根目錄

lftp 192.168.1.8:/pub>quit                                  //退出

[root@localhost weijie]#ls /                                //檢視更目錄,已經得到檔案

Linux獲取幫助等基礎命令的使用

使用命令 本節學習以下命令 type 說明怎樣解釋乙個命令名 which 顯示會執行哪個可執行程式 man 顯示命令手冊頁 apropos 顯示一系列適合的命令 info 顯示命令 info whatis 顯示乙個命令的簡潔描述 alias 建立命令別名 命令可以是下面四種形式之一 1 是乙個可執行...

Linux基礎命令

eg man ls 就可以檢視ls相關的用法 注 按q鍵或者ctrl c退出,在linux下可以使用ctrl c終止當前程式執行。2.ls檢視目錄或者檔案的屬 列舉出任一目錄下面的檔案 eg ls usr man ls l a.d表示目錄 directory 如果是乙個 表示是檔案,如果是l則表示是...

linux基礎 命令

命令自動補全 help幫助 幫助文件 鳥哥linux私房菜 linux命令大全 工具書 man ls useradd utest useradd g group2 utest 建立utesty使用者屬於group2組 usermod g group3 utest 將utest所在的組改為group3...