06 2020 档案
摘要:运行shell脚本的方式: chmod +x test sh test bash test 查看文件所在路径: which sh 查看具体的信息: ls /usr/bin/sh -l 查看命令历史: history 别名:alias、unalias 前后台作业控制:screen 查看任务:scree
阅读全文
摘要:查看创建的mysql用户: cat /etc/passwd | grep mysql 安装步骤: 1.先删除mariadb apt-get autoremove --purge mariadb-client-core-10.3 apt-get autoremove --purge 2.把mysql的
阅读全文
摘要:在main.js中: Vue.filter('dateFormat', function(originVal) { const dt = new Date(originVal) const y = dt.getFullYear() const m = (dt.getMonth() + 1 + '')
阅读全文
摘要://反射 操作 public static class Reflection { #region GetDescription(获取类型描述) /// <summary> /// 获取类型描述,使用<see cref="DescriptionAttribute"/>设置描述 /// </summar
阅读全文
摘要:/// <summary> /// 委托帮助类 /// </summary> public class DelegateHelper { /// <summary> /// 异步执行方法 /// </summary> /// <param name="firstFunc">首先执行的方法</para
阅读全文