常用批处理命令 @echo off set /p loc= 请输入索要操作的文件夹路径: set /p str1= 请输入要替换的文件(文件夹)名字符串(可替换空格): set /p str2= 请输入替换后的文件(文件夹)名字符串(去除则直接回车): echo. echo 正在修改文件(夹)名中,请稍候…… for /f "delims=" %%a in ('dir "%loc%" /s /b ^|sort / 批处理笔记 仔仔 2024-01-19 1663 热度 0评论
文件改名:批量去除文件名中的某些字符串 powshell (管理员模式) Get-ChildItem -Recurse | Rename-Item -NewName { $_.name -replace "要去除的字符串", "" } 例如: // 文件名中包含abc字符的全部替换为空 Get-ChildItem -Recurse | Rename-Item -NewName { $_.name -replace "abc", "" } 批处理笔记 仔仔 2024-01-19 1864 热度 0评论
批量生成ts文件 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> // 把多个ts文件合并成一个文件 // copy /b F:\f\* 批处理笔记 仔仔 2024-01-19 1614 热度 0评论
win10 右下角显示秒 @echo off TITLE 设置Win10右下角任务栏时间显示秒 ECHO 设置Win10右下角任务栏时间显示秒 reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowSecondsInSystemClock /t REG_DWORD /d 1 /f TASKKILL /f /IM e 批处理笔记 仔仔 2024-01-19 1603 热度 0评论
开发流程 创建一个工程,名为my_demo 使用git初始化 使用npm初始化 添加.gitignore文件,内容如下: node_modules .DS_Store .idea .vscode git提交:init proj 关联并推送到gitee 新建index.js 设置package.json的脚本start,用于运行index.js命令 安装lodash 编写下面的代码 import { tr 项目构建 仔仔 2023-11-13 2438 热度 0评论
文字固定行数 超出省略号展示 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>文字固定行数 超出省略号展示</titl 代码仓库 仔仔 2023-10-10 1512 热度 0评论
纯CSS实现Tab页切换效果 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible 代码仓库 仔仔 2023-10-10 1530 热度 0评论
正则表达式 – 渡一袁老师 字面量匹配 规则中直接书写字面量字符 特殊字符 . // 匹配任意一个字符 ^ // 匹配字符串开始 $ // 匹配字符串结束 例如: 规则:a123...$ a1234 false a123456 true b12345677 false 转义符:\ \n // 换行符 \r // 回车符 \t // 制表符(Tab键) \s // 任意空白字符 \S // 除了任意空白字符以外字符(\s取反) 默认分类 仔仔 2023-09-25 1689 热度 0评论
vue2 基础知识 使用方式:<button type="button" @click.prevent="xxx" /> prevent:阻止默认事件(常用) stop:阻止事件冒泡啊(常用) once:事件只触发一次(常用) capture:使用事件的捕获模式 self:只有event.target是当前操作的元素时才触发事件 passive:事件的默认行为立即执行,无需等待事件回调执行完毕 nativ Vue学习 仔仔 2023-08-23 2242 热度 0评论
npm 常用指令 npm config get registry npm config set registry https://registry.npm.taobao.org npm config set registry https://registry.npmjs.org/ npm init # 初始化工程,帮助生成 package.json 文件 npm init -y # 初始化工程,全部使用默认配置生成 项目构建 仔仔 2023-08-09 2322 热度 0评论