mirror of
https://github.com/mgerb/top-of-reddit
synced 2026-03-06 21:35:27 +00:00
21 lines
363 B
Bash
Executable File
21 lines
363 B
Bash
Executable File
# get first argument
|
|
if [ -z "$1" ]; then
|
|
echo "Please provide a year e.g. 'generate.sh 2023'"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
rm README.md subreddits.txt wordcloud_$1.png;
|
|
|
|
go run generate-stats.go $1;
|
|
|
|
wordcloud_cli \
|
|
--text subreddits.txt \
|
|
--imagefile wordcloud_$1.png \
|
|
--color red \
|
|
--background white \
|
|
--height 2000 \
|
|
--width 2000 \
|
|
--margin 10 \
|
|
--mask ./circle.png
|