测试文件大小在这里有意义吗?我试图在下载时切断连接,但看起来似乎永远不会达到大小测试。
#!/usr/bin/env perl
use warnings;
use strict;
use 5.012;
use LWP::Simple;
my $url = 'http://www.kernel.org/pub/linux/kernel/v2.6/next/patch-v2.6.34-rc5-next-20100428.bz2';
my $file = 'next_kernel.bz';
my $file_size = '3462166';
m
如何使用sed来查找linux这个词的行?稍后会用linux这个词显示第10行吗?前:
cat file | sed -e '/linux/!d' -e '10!d' ### I can not display the first 10 lines of the word linux
cat file | sed '/linux/!d' | sed '10!d' ### It is well
如何使它与一个sed一起工作?
cat file | sed -e '/linux/!d; ...?; 10!d'
.?-
我使用Socket.io连接BE和FE,每次连接时,BE都会对FE发来的token进行验证,如果验证失败,连接将被切断。 我想知道,当连接因为认证失败而被切断时,根据软件开发行业标准,应该从be返回什么到FE? jwt.verify(token, process.env.JWT_SECRET, function (err, decoded) {
if (err) {
// Authentication failed, what should I do here?
socket.disconnect();
} else {
// Auth