摘要:用过了很多压测工具,却一直没找到中意的那款。最近试了wrk感觉不错,写下这份使用指南给自己备忘用,如果能帮到你,那也很好。 安装 wrk支持大多数类UNIX系统,不支持windows。需要操作系统支持LuaJIT和OpenSSL,不过不用担心,大多数类Unix系统都支持。安装wrk非常简单,只要从g
阅读全文
摘要:ls ls -als -l == llls -Aldrwxrwxrwx. 2 root root 6 Dec 21 20:38 Videos-rwxrwxrwx 1 root root 5982 Feb 21 10:26 .viminfo1) 第一列 drwxrwxr -x ,字母d代表目录或者文件
阅读全文
摘要:https://blog.csdn.net/hjm4702192/article/details/80518856 Redis学习 https://blog.csdn.net/u011541946/article/category/6788788/1? https://blog.csdn.net/j
阅读全文
摘要:重要:node version需要8.x.x 介绍 stf 全称 Smartphone Test Farm ,一款WEB 端移动设备批量管理工具(Remote control all your Smartphone devices),目前仅支持android设备,仅支持在mac和linux上搭建,暂
阅读全文
摘要:$1,$2....${10},${11},[root@localhost cee]# cat p.sh #!/bin/bash#file_name:p.shecho $1 $2[root@localhost cee]# sh p.sh 123 william123 william[root@loca
阅读全文
摘要:[root@localhost cee]# echo -e "line1\nline2"|awk '{ print }'line1line2[root@localhost cee]# echo -e "line1\nline2"|awk 'BEGIN{ print "START"} { print
阅读全文
摘要:[root@localhost cee]# echo this thisthisthis |sed 's/this/THIS/g'THIS THISTHISTHIS[root@localhost cee]# echo this thisthisthis |sed 's/this/THIS/2g'th
阅读全文
摘要:1.$表示普通用户,#表示超级用户。2.sh /home/path/script.sh3.chmod a+x script.sh 增加可执行权限 ./script.sh #./表示当前的目录4.终端打印:echo 'I love linux' #!/bin/bash#file_name:printf
阅读全文
摘要:SHOW DATABASES;USE LangLibCEE;SHOW TABLES;SHOW COLUMNS FROM customers;DESC customers;SHOW STATUS WHERE Variable_name LIKE '%time';SHOW CREATE DATABASE
阅读全文
摘要:1.tar tar -xvf archive_name.tar 解压文件 tar -cvf archive_name.tar file 把文件file压缩成archive_name.tar tar -tvf archive_name.tar 查看压缩文件 2.grep grep 'this' dem
阅读全文