从Linux下载文件到本机 , 在Linux终端输入命令回车后,选择本地存储路径即可。
格式:
sz filename 下载文件filename
sz file1 file2 下载多个文件
sz dir/* 下载dir目录下所有文件
从本地上传文件到 Linux,在Linux终端(xshell)输入命令回车后,选择本地要上传的文件即可,可一次指定多个文件
格式:
rz
如果Linux上没有安装过 lrzsz 安装包,则无法使用rz和sz命令.
可使用yum命令安装:yum install -y lrzsz
]]><?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";
}
}
?>
]]>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
]]>