闲者博客 - 下载 2022-03-03T15:47:00+08:00 Typecho https://bk1314.com/feed/atom/tag/%E4%B8%8B%E8%BD%BD/ <![CDATA[LIUNX rz与sz上传下载文件]]> https://bk1314.com/56.html 2022-03-03T15:47:00+08:00 2022-03-03T15:47:00+08:00 飞鱼 http://www.typecho.org 作中需要在 Linux 完成上传下载操作

sz下载

从Linux下载文件到本机 , 在Linux终端输入命令回车后,选择本地存储路径即可。

格式:

sz filename  下载文件filename
sz file1 file2  下载多个文件
sz dir/*   下载dir目录下所有文件

rz上传

从本地上传文件到 Linux,在Linux终端(xshell)输入命令回车后,选择本地要上传的文件即可,可一次指定多个文件

格式:

rz

注意:

如果Linux上没有安装过 lrzsz 安装包,则无法使用rz和sz命令.

可使用yum命令安装:yum install -y lrzsz

]]>
<![CDATA[PHP强制性文件下载]]> https://bk1314.com/41.html 2022-02-25T18:54:59+08:00 2022-02-25T18:54:59+08:00 飞鱼 http://www.typecho.org <?php /** *@param $file - path to file */ function force_download($file) { if ((isset($file)) && (file_exists($file))) { header("Content-length: " . filesize($file)); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . $file . '"'); readfile("$file"); } else { echo "No file selected"; } } ?> ]]> <![CDATA[服务器测速文件]]> https://bk1314.com/27.html 2022-02-23T22:31:58+08:00 2022-02-23T22:31:58+08:00 飞鱼 http://www.typecho.org 套餐与机房位置测试IP测速文件bin北美洲西部 - 洛杉矶216.24.245.99100MB<br/>10MB北美洲西部 - 洛杉矶(中美极速专线,CN2 GIA)198.177.127.127100MB<br/>10MB亚太东部 - 香港198.177.121.177100MB<br/>10MB

liunx 命令 :

wget 这里是上面的文件地址 即可看到下载速度

# 北美洲西部 - 洛杉矶
wget http://us-west.sugarhosts.com/100MB-uswest.bin
wget http://us-west.sugarhosts.com/10MB-uswest.bin
#北美洲西部 - 洛杉矶(中美极速专线,CN2 GIA)
wget http://us-west2.sugarhosts.com/100MB-uswest2.bin
wget http://us-west2.sugarhosts.com/10MB-uswest2.bin
#亚太东部 - 香港
wget http://ap-east.sugarhosts.com/100MB-apeast.bin
wget http://ap-east.sugarhosts.com/10MB-apeast.bin
]]>