ls ls -a 显示指定目录下所有目录与文件,包括隐藏文件 -l 以列表的方式显示文件的详细信息 -h 配合-l以人性化的方式显示文件大小 隐藏文件和隐藏文件夹是用来配置应用的。 通配符的使用 * 代表任意个数个字符? 代表任意一个字符,至少一个[] 表示可以匹配字符族中的任意一个 [abc] 匹 ...
分类:
系统相关 时间:
2021-07-01 16:57:59
阅读次数:
0
1、创建一个名为hello-vue的工程 vue init webpack hello-vue 2、安装依赖 #进入工程目录 cd hello-vue #安装 vue-router npm install vue-router --save-dev #安装 element-ui npm instal ...
分类:
其他好文 时间:
2021-07-01 16:54:32
阅读次数:
0
有同学问,如何/dir1/dir2/dir3/file中的,前半部分:/dir1/dir2/dir3和最后部分file,这个用字符串分隔及${str//}来处理还比较难办,这个时候basename和dirname命令就很方便了。 # 获取当前路径 # 查看当前路径 [dirname] 手册页“Pri ...
分类:
系统相关 时间:
2021-07-01 16:53:47
阅读次数:
0
vagrant构建linux虚拟机 1.下载软件 Vagrant: https://releases.hashicorp.com/vagrant/2.2.5/vagrant_2.2.5_x86_64.msi VirtualBox: https://download.virtualbox.org/vi ...
分类:
系统相关 时间:
2021-07-01 16:52:21
阅读次数:
0
gdb attach 失败解决方案 1. 失败信息 ptrace:Operation not permitted 2. 原因分析 默认情况下Linux只允许attach和启动gdb的用户相同的进程,比如A用户启动gdb,但某个程序是由B启动的,则gdb无法attach。 3. 解决方案 有yama的 ...
分类:
数据库 时间:
2021-07-01 16:43:35
阅读次数:
0
Linux常用命令 1、系统命令 runlevel # 查看当前的运行级别 systemctl status firewalld # 开启网络服务功能 stop # 关闭 restart # 重启 reload # 重载 reboot # 重启 halt # 关机 poweroff # 关机 2、查 ...
分类:
系统相关 时间:
2021-07-01 16:41:50
阅读次数:
0
插件列表: code --install-extension abusaidm.html-snippetscode --install-extension akamud.vscode-javascript-snippet-packcode --install-extension christian- ...
分类:
其他好文 时间:
2021-07-01 16:41:12
阅读次数:
0
使用vue-amap 一套专门用于vue的高德地图插件 1.安装 npm install vue-amap -S 2.在main.js中引入 import AMap from 'vue-amap' Vue.use(AMap) // 初始化地图 AMap.initAMapApiLoader({ key ...
分类:
其他好文 时间:
2021-07-01 16:30:44
阅读次数:
0
一、官方示例 地址:https://docs.locust.io/en/stable/quickstart.html#how-to-write-a-real-locust-file 二、安装Locust Windows系统安装locust: 直接通过 pip install locustio 命令安 ...
分类:
编程语言 时间:
2021-07-01 16:30:11
阅读次数:
0
一个比较老的问题了,因在Grafana界面上查询es数据时,传递的时间范围参数并不是浏览器本地时区(如CST),导致查询不到当天0~8h的数据: https://github.com/grafana/grafana/issues/16765 解决方法: 先去grafana官网上找下我们这个版本的源码 ...
分类:
其他好文 时间:
2021-07-01 16:27:31
阅读次数:
0