Skip to content

Instantly share code, notes, and snippets.

View shukebeta's full-sized avatar
🎯
Focusing

David Wei shukebeta

🎯
Focusing
View GitHub Profile
@shukebeta
shukebeta / custom.ad.block.txt
Created October 8, 2020 01:48
my custom ad blocker list
# ximalaya vip check
127.0.0.1 mwsa.ximalaya.com
@shukebeta
shukebeta / replace.sh
Created April 16, 2024 01:35
Replace specific string with another string in a directory
#!/bin/bash
# Check if the required arguments are provided
if [ $# -lt 2 ] || [ $# -gt 3 ]; then
echo "Usage: $0 <directory> <target_string> [<replacement_string>]"
exit 1
fi
# Assign arguments to variables
directory="$1"