You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
333 B
17 lines
333 B
|
5 years ago
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
PATH="$PATH:$HOME/src/garbit/lib/facebook-event-scraper/bin"
|
||
|
|
|
||
|
|
if [ "$1" == "" ]; then
|
||
|
|
echo "This script takes in an path to an JSON file containing an Array.";
|
||
|
|
exit 0;
|
||
|
|
fi
|
||
|
|
|
||
|
|
cat $1 \
|
||
|
|
| get-hosts-from-event-nodes \
|
||
|
|
| flatten-array \
|
||
|
|
| get-pages-from-hosts \
|
||
|
|
| unique-by-id \
|
||
|
|
| remove-profile-picture
|
||
|
|
|