码迷,mamicode.com
首页 >  
搜索关键字:more less cat tac tail head    ( 74720个结果
linux 监控服务器流量
linux 监控服务器流量 #!/bin/bash ethn=$1 while true do RX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}') TX_pre=$(cat /proc/net/dev ...
分类:系统相关   时间:2021-04-21 12:03:54    阅读次数:0
GreatSQL MGR安装
git clone https://gitee.com/GreatSQL/GreatSQL.gitwget https://gitee.com/GreatSQL/GreatSQL/repository/archive/master.ziphttps://gitee.com/GreatSQL/Grea ...
分类:数据库   时间:2021-04-21 12:01:14    阅读次数:0
document.write的覆盖问题
document.write插入标签会覆盖页面的问题 document.write插入js标签会覆盖页面又两种情况: 通过onclick() 点击事件触发执行document.write(),会使document.write()覆盖原来的页面。 在window.onload里面执行document. ...
分类:其他好文   时间:2021-04-21 11:53:09    阅读次数:0
邮箱(outlook)嵌入html页面
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>邮件模板</title> </head> <body> <table width="1024" border="0" cellspacing="0" cellp ...
分类:Web程序   时间:2021-04-21 11:46:08    阅读次数:0
“改造” VS Code 编辑器,一起写个插件吧!
作者:HelloGitHub-小夏(首发于 HelloGitHub 公众号) 作为一个靠代码作为“生计”的开发者,bug 写的好不好,编辑器真的很重要!那么 Visual Studio Code 这个大名你肯定不会陌生。作为一个老厉害的编辑器,它的过人之处简单讲讲来说有这么几点: 首先,它的设计者是 ...
分类:其他好文   时间:2021-04-21 11:45:33    阅读次数:0
linux 常用的命令
查看所有用户任务计划 cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {} 查看设备的挂载情况 lsblk lsblk -f 查看rhel或centos版本 cat /etc/redhat-release 查看最后登陆信息 las ...
分类:系统相关   时间:2021-04-20 15:45:36    阅读次数:0
vue动态绑定类(实现tab)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content ...
分类:其他好文   时间:2021-04-20 15:35:33    阅读次数:0
安卓开发 利用百度识图api进行物体识别
前文 之前的随笔中,已经通过相机或相册获取到了我们想要的图片,接下来进行识图api的配置工作。我使用的是百度的api,利用python获取信息,并在MainActivity中进行调用来输出信息。 一、首先我们需要申请创建一个应用(管理控制台->产品服务->图像识别),百度智能云,得到api key和 ...
分类:移动开发   时间:2021-04-20 15:32:06    阅读次数:0
asp.net core 3.1 发布到Ubuntu(nginx、Supervisor)
一.Ubuntu环境搭建 1. 安装.NET SDK or .NET Runtime 先为Ubuntu安装运行时,一般情况下安装运行时即可 .NET版本Snap包 5.0 dotnet-runtime-50 3.1(LTS) dotnet-runtime-31 3.0 dotnet-runtime- ...
分类:Web程序   时间:2021-04-20 15:09:49    阅读次数:0
OWASP靶场练习
SQL注入 一、LOW难度SQL注入 1.判断注入类型 1.输入1 2.输入 1' and 1=2,报错 3.输入 1' and 1=2 #,无报错 得知为字符型注入 2.猜字段数 方法有两种: ① 1' order by N # ② 1' union select 1, 2, ... # 采用第一 ...
分类:Web程序   时间:2021-04-20 15:02:48    阅读次数:0
74720条   上一页 1 ... 61 62 63 64 65 ... 7472 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!