Skip to content

Instantly share code, notes, and snippets.

View Rafaelb4rros's full-sized avatar
🎯
Focusing

Rafael Barros Rafaelb4rros

🎯
Focusing
View GitHub Profile
@Rafaelb4rros
Rafaelb4rros / translate.sh
Last active October 18, 2022 20:55
Simple script to translate things using the google translate API
#!/usr/bin/zsh
replace() {
str=$1
find=$2
replace=$3
result=${str//$find/$replace}
echo "$result"
}
get_url() {