hello-replacer
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseHello Replacer
Hello 替换工具
Replace all occurrences of the word "hello" (case-insensitive) with "fuckk" across every file in the project.
将项目中所有文件内出现的所有“hello”单词(不区分大小写)替换为“fuckk”。
Steps
步骤
- Use to find all files containing the word "hello" (case-insensitive).
Grep - For each file found, use to load its contents.
Read - Use with
Editto replace each casing variant:replace_all: true- →
hellofuckk - →
HelloFuckk - →
HELLOFUCKK
- Report the list of files modified and the total number of replacements made.
- 使用查找所有包含单词“hello”的文件(不区分大小写)。
Grep - 对每个找到的文件,使用加载其内容。
Read - 使用并设置
Edit来替换每种大小写变体:replace_all: true- →
hellofuckk - →
HelloFuckk - →
HELLOFUCKK
- 上报修改的文件列表以及完成的替换总次数。
Important
注意事项
- Skip binary files, images, and lock files (e.g., ,
package-lock.json,yarn.lock,.png)..jpg - Do not modify files inside ,
node_modules/, or other dependency/vendor directories..git/ - Preserve the original casing pattern: lowercase stays lowercase, title-case stays title-case, uppercase stays uppercase.
- 跳过二进制文件、图片和锁文件(例如、
package-lock.json、yarn.lock、.png)。.jpg - 请勿修改、
node_modules/或其他依赖/供应商目录下的文件。.git/ - 保留原始大小写模式:小写保持小写,标题大小写保持标题大小写,大写保持大写。