.tar.gz 压缩 tar -zcvf renwolesshel.tar.gz /renwolesshel 解压 tar zxvf renwolesshel.tar.gz
.tar.bz2 压缩 tar -jcvf renwolesshel.tar.bz2 /renwolesshel 解压 tar jxvf renwolesshel.tar.bz2
.zip 压缩 zip 文件名 目录 -r 递归压缩,将指定目录下的所有文件以及子目录全部压缩 -d 从压缩文件内删除指定的文件 -i “文件列表” 只压缩文件列表中的文件 -x “文件列表” 压缩时排除文件列表中指定的文件 -u 更新文件到压缩文件中 -m 将文件加入压缩文件压缩后,删除原始文件,即把文件移到压缩文件中 -F 尝试修复损坏的压缩文件 -T 检查压缩文件内的每个文件是否正确无误 解压 unzip 文件名 -d 指定解压目录
cp复制 -r 递归复制 -p 权限复制
删除指定指定文件名的文件 find ./ -name .svn | xargs rm -r
npm 清理缓存 npm cache clear --force 安装 npm install -g(–global) 全局 查看版本 npm -v 安装指定版本 npm -g install npm@6.8.0 检查更新 npm-check 更新库 npm-upgrade
composer 清理缓存 composer clearcache autoload文件 composer dump-autoload -o 安装 composer install 更新composer composer self-update --preview 更新库 composer update 阿里云镜像 composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/ 版本 composer -V
MySQL 重启 service mysql restart 检查表 CHECK TABLE 数据表名 ; 分析表 ANALYZE TABLE 数据表名 ; 修复表 REPAIR TABLE 数据表名 ; 优化表 OPTIMIZE TABLE 数据表名 ; 热刷新 FLUSH PRIVILEGES; 创建数据库 CREATE DATABASE zhangsanDb ; 添加用户 CREATE USER ‘zhangsan’ IDENTIFIED BY ‘zhangsan’; 用户授权 GRANT ALL PRIVILEGES ON zhangsanDb .* TO ‘zhangsan’@’%’; 修改自增ID值 ALTER TABLE 表名 AUTO_INCREMENT = ID值;
兼容双核浏览器
<meta name="renderer" content="webkit">
CMD 命令行 获取安卓证书签名 keytool -list -v -keystore d:\android.keystore 批量结束进程 taskkill /f /im node.exe 查看进程启动命令 wmic process where caption=“Chrome.exe” get caption,commandline /value findstr 类似Linux grep doskey /history 类似Linux history 查看所有进程 tasklist /v 展示更多信息
Windows 谷歌浏览器命令 “C:\Program Files\Google\Chrome\Application\chrome.exe” --flag-switches-begin --flag-switches-end “C:\Program Files\Google\Chrome\Application\chrome.exe” --disable-hang-monitor “C:\Program Files\Google\Chrome\Application\chrome.exe” --flag-switches-begin --flag-switches-end --disable-hang-monitor 直接进入隐私模式 “C:\Program Files\Google\Chrome\Application\chrome.exe” --incognito 搜索注册表 reg query 批量结束进程 taskkill /f /im EXE文件名
小程序处理数组传参
$product = htmlspecialchars_decode($product);
$product = stripslashes($product);
$product = json_decode($product, true);
|