1=head1 NAME 2 3cpod - cron(8) friendly podcatcher 4 5=head1 SYNOPSIS 6 7B<cpod> [B<-h>] [B<-p> I<number>] [B<-r> I<number>] [B<-v>] 8 9=head1 DESCRIPTION1011cpod is a small cron(8) friendly podcatcher which is only responsible12for downloading podcast episodes. It doesn't play them, it doesn't13enqueue them and it doesn't track the episodes you already listend to. It14simply fetches them no more, no less.1516If you don't pass any command line flags to cpod it will automatically17update all feeds and download all (new) episodes. Since cpod supports18continuous downloads you can also interrupted it at any point and the19next time you invoke it will automatically resume unfinished downloads20unless those unfinished downloads are no longer part of your episode21scope.2223cpod is using a plain text file to store your podcast subscriptions. You24need to manually create this file before starting cpod. Open the file25with your favorite text editor and add your desired URLs (one per line).26The file path is documented in the B<FILES> section below.2728For OPML import and export two separated optional binaries are provided.29If you installed them take a look at cpod-import(1) and cpod-export(1)30in case your are seeking more information.3132=head1 OPTIONS3334=over 43536=item B<-h>3738Display help/defaults and exit.3940=item B<-p> I<number>4142Number of maximal parallel downloads.4344=item B<-r> I<number>4546Number of most recent episodes to download.4748=item B<-v>4950Display version number and exit.5152=back5354=head1 ENVIRONMENT5556=over 45758=item B<CPOD_DOWNLOAD_DIR>5960The download directory (default: ~/podcasts).6162=item B<XDG_CONFIG_HOME>6364Base directory with configuration files (default: ~/.config).6566=back6768=head1 FILES6970=over 47172=item I<~/podcasts>7374Default podcast download directory.7576=item I<~/.config/cpod/urls>7778Plain text file containing all subscribed feeds.7980=back8182=head1 EXAMPLES8384Update all feeds and download new episodes:8586 cpod8788Download the most recent episodes of each feed:8990 cpod -r 19192Subscribe to a new podcast:9394 echo "URL" >> "${XDG_CONFIG_HOME:-$HOME/.config}/cpod/urls"9596=head1 SEE ALSO9798cpod-export(1), cpod-import(1), cron(8)