linux中curl安裝和使用

2021-08-19 02:45:15 字數 678 閱讀 9911

工作中用到,記錄一下。

wget 

2.解壓縮

tar -xzvf curl-7.59.0.tar.gz

3.進入安裝目錄

cd curl-7.59.0

4.編譯

./configure

make

make install

5.驗證安裝是否成功

curl --version

可以檢視到版本,則curl安裝成功。

報錯:error while loading shared libraries: libcurl.so.4: cannot open shared object file: no such file or directory

解決方法:

2.將檔案路徑新增到日誌中:/etc/ld.so.conf

3.執行生效:/sbin/ldconfig -v

4.重新驗證curl安裝

curl -o page.html www.sina.com

curl -x www.sina.com

curl -x ip:n -o page.html -d cookie001.txt www.sina.com

curl -x ip:n -o page.html -d cookie001.txt -b cookie001.txt www.sina.com

LINUX中curl命令使用

curl一.get提交資料 1.直接將資料附加在url後面 2.使用 g 或者 get 引數配合 d data data ascii data urlencode 等引數 由於 g 等價於 get d 等價於 data data ascii 所以等價 二.post put 請求json資料 三.po...

linux 系統安裝 curl

apk get curl試了下面的方案,不知道是不是因為 docker 容器裡的映象的問題。導致失敗。wget2.解壓到當前目錄 tar zxvf curl 7.65.3.tar.gz3.進入解壓後的目錄內 cd curl 7.65.34.配置,指定安裝的目錄,這裡是 usr local curl ...

Linux環境安裝curl

wget tar zxf curl 7.20.0.tar.gz cd curl 7.17.1 configure prefix usr local curl make sudo make install2.環境配置 將curl命令加入環境變數,命令列裡執行 僅對本會話起作用,或者在.bash pro...