2 lines
122 B
Bash
Executable file
2 lines
122 B
Bash
Executable file
#!/bin/sh
|
|
wget http://graph.facebook.com/$1 -q -O - | awk -F ',"(likes|shares)":' '{print substr($2, 0, length($2) - 1)}'
|