tscrape_update.1 - tscrape - twitter scraper (not working anymore) | |
git clone git://git.codemadness.org/tscrape | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
tscrape_update.1 (1451B) | |
--- | |
1 .Dd March 20, 2020 | |
2 .Dt TSCRAPE_UPDATE 1 | |
3 .Os | |
4 .Sh NAME | |
5 .Nm tscrape_update | |
6 .Nd update feeds and merge with old feeds | |
7 .Sh SYNOPSIS | |
8 .Nm | |
9 .Op Ar tscraperc | |
10 .Sh DESCRIPTION | |
11 .Nm | |
12 writes TAB-separated feed files and merges new items with the items in a… | |
13 existing files. | |
14 The items are stored in one file per feed in the directory | |
15 .Pa $HOME/.tscrape/feeds | |
16 by default. | |
17 The directory can be changed in the | |
18 .Xr tscraperc 5 | |
19 file. | |
20 .Sh OPTIONS | |
21 .Bl -tag -width 17n | |
22 .It Ar tscraperc | |
23 Config file. | |
24 The default is | |
25 .Pa $HOME/.tscrape/tscraperc | |
26 .El | |
27 .Sh FILES READ | |
28 .Bl -tag -width 17n | |
29 .It Ar tscraperc | |
30 This file is evaluated as a shellscript in | |
31 .Nm . | |
32 See also the | |
33 .Xr tscraperc 5 | |
34 man page for a detailed description of the format and an example file. | |
35 .El | |
36 .Sh FILES WRITTEN | |
37 .Bl -tag -width 17n | |
38 .It feedname | |
39 TAB-separated | |
40 .Xr tscrape 5 | |
41 format containing all items per feed. | |
42 The | |
43 .Nm | |
44 script merges new items with this file. | |
45 The feedname cannot contain '/' characters, they will be replaced with '… | |
46 .El | |
47 .Sh EXIT STATUS | |
48 .Ex -std | |
49 .Sh EXAMPLES | |
50 To update your feeds and format them in various formats: | |
51 .Bd -literal | |
52 # Update | |
53 tscrape_update "configfile" | |
54 # Plain-text list | |
55 tscrape_plain $HOME/.tscrape/feeds/* > $HOME/.tscrape/feeds.txt | |
56 # HTML | |
57 tscrape_html $HOME/.tscrape/feeds/* > $HOME/.tscrape/feeds.html | |
58 .Ed | |
59 .Sh SEE ALSO | |
60 .Xr sh 1 , | |
61 .Xr tscrape 1 , | |
62 .Xr tscrape_html 1 , | |
63 .Xr tscrape_plain 1 , | |
64 .Xr tscrape 5 , | |
65 .Xr tscraperc 5 | |
66 .Sh AUTHORS | |
67 .An Hiltjo Posthuma Aq Mt [email protected] |