diff options
author | Daniel Friesel <derf@finalrewind.org> | 2023-02-05 09:23:26 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2023-02-05 09:23:26 +0100 |
commit | 9c7bc5ee02c49df97ed164e1f267624680bdf4a1 (patch) | |
tree | beee2d01b40dbfae584fd7f846cbc646c9d08d2c | |
parent | 21f2f6d4bf1021936064064a081730734b42ddfc (diff) |
hafas-m: -u / custom URLs have been dropped in 4.00
-rwxr-xr-x | bin/hafas-m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/hafas-m b/bin/hafas-m index d58ee4c..2fcdcc7 100755 --- a/bin/hafas-m +++ b/bin/hafas-m @@ -41,9 +41,9 @@ GetOptions( ) or show_help(1); if ($list_services) { - printf( "%-40s %-14s %s\n\n", 'operator', 'abbr. (-s)', 'url (-u)' ); + printf( "%-40s %-14s\n\n", 'operator', 'abbr. (-s)' ); for my $service ( Travel::Status::DE::HAFAS::get_services() ) { - printf( "%-40s %-14s %s\n", @{$service}{qw(name shortname url)} ); + printf( "%-40s %-14s\n", @{$service}{qw(name shortname)} ); } exit 0; } @@ -329,7 +329,7 @@ hafas-m - Interface to the DeutscheBahn/HAFAS online departure monitor =head1 SYNOPSIS B<hafas-m> [B<-d> I<date>] [B<-t> I<time>] [B<-m> I<motlist>] -[B<-s> I<service> | B<-u> I<url>] I<station> +[B<-s> I<service>] I<station> =head1 VERSION |