Jafner.net/dotfiles/sieve/socials_compose.sh

14 lines
381 B
Bash
Raw Normal View History

2024-06-04 03:04:47 -07:00
#!/bin/bash
# create the domains variable as a list of space-separated, double-quoted domains
# one per line from the socials_domains.txt file
sort -u -o socials_domains.txt socials_domains.txt
domains=""
while IFS= read -r line; do
domains+="\"$line\", "
done < <(cat "socials_domains.txt")
domains="${domains%, }"
sed "s/socials_domains/${domains}/g" socials_script.txt