This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # 设置工作目录 | |
| CLASH_DIR="$HOME/.config/clash" | |
| RULESET_DIR="$CLASH_DIR/ruleset" | |
| # 创建目录 | |
| mkdir -p "$RULESET_DIR" | |
| cd "$RULESET_DIR" |