Say you have a big list of Twitter users you want to follow (example), you can add the Twitter username one-by-one or you can leverage the power of command line on Linux. Here’s how:
- Download the twidge binary appropriate for your Linux
- Rename the downloaded binary file as ‘twidge’ and make it executable i.e. chmod u+x twidge
- twidge setup # Follow instructions given to authorize twidge application to access your Twitter account
- Using the example above, copy and paste the list of Twitter usernames and save the file as ‘userlist’
- cat userlist | sed ‘s/@/\n/g’ | while read U X; do if [ -z "$U" ]; then continue; fi; twidge follow $U; done
Advertisement
June 8, 2011 at 8:45 am |
[...] the article here: How to follow a big list of Twitter users « Quis custodiet ipsos … Posted in How to Twitter Tags: a-big-list, add-the, big-list, command-line, leverage-the, [...]