The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

recs-fromatomfeed

recs-fromatomfeed --help-all

 Usage: recs-fromatomfeed <args> [<uris>]
    Produce records from atom feed entries.
 
    Recs from atom feed will get entries from paginated atom feeds and create a record stream from the results. The keys of the
    record will be the fields in the atom field entry. Recs from atom feed will follow the 'next' link in a feed to retrieve
    all entries.
 
 Arguments:
    --[no]follow                 Follow atom feed next links (or not). Defaults on.
    --max=<n>                    Print at most <n> entries and then exit.
    --filename-key|fk <keyspec>  Add a key with the source filename (if no filename is applicable will put NONE)
 
   Help Options:
       --help  This help screen
 
 Examples:
    Dump an entire feed
       recs-fromatomfeed "http://my.xml.com"
    Dumps just the first page of entries
       recs-fromatomfeed --nofollow "http://my.xml.com"
    Dumps just the first 10 entries
       recs-fromatomfeed --max 10 "http://my.xml.com"

See Also

RecordStream(3) - Overview of the scripts and the system
recs-examples(3) - A set of simple recs examples
recs-story(3) - A humorous introduction to RecordStream
SCRIPT --help - every script has a --help option, like the output above