Closed pcseanmckay closed 6 years ago
pi@pi:~/twobucks $ dryrun="--spider"
pi@pi:~/twobucks $ other_args="-nH -r"
pi@pi:~/twobucks $ more_args="--no-parent"
pi@pi:~/twobucks $ wget_args=( ${dryrun} )
pi@pi:~/twobucks $ wget_args+=( ${other_args} ${more_args} )
pi@pi:~/twobucks $ echo ${wget_args[@]}
--spider -nH -r --no-parent
pi@pi:~/twobucks $ wget ${wget_args[@]} google.com
Spider mode enabled. Check if remote file exists.
--2018-04-04 18:52:50-- http://google.com/
Resolving google.com (google.com)... 216.58.194.46, 2607:f8b0:4000:802::200e
Connecting to google.com (google.com)|216.58.194.46|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: http://www.google.com/ [following]
Spider mode enabled. Check if remote file exists.
--2018-04-04 18:52:50-- http://www.google.com/
Resolving www.google.com (www.google.com)... 108.177.104.103, 108.177.104.106, 108.177.104.99, ...
Connecting to www.google.com (www.google.com)|108.177.104.103|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Remote file exists and could contain links to other resources -- retrieving.
--2018-04-04 18:52:50-- http://www.google.com/
Reusing existing connection to www.google.com:80.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html.tmp.tmp’
index.html.tmp.tmp [ <=> ] 11.57K --.-KB/s in 0.007s
2018-04-04 18:52:50 (1.63 MB/s) - ‘index.html.tmp.tmp’ saved [11844]
Removing index.html.tmp.tmp.
Found no broken links.
FINISHED --2018-04-04 18:52:50--
Total wall clock time: 0.4s
Downloaded: 1 files, 12K in 0.007s (1.63 MB/s)
pi@pi:~/twobucks $ type xargs
xargs is /usr/bin/xargs
pi@pi:~/twobucks $ type declare
declare is a shell builtin
pi@pi:~/twobucks $ declare --help | egrep "^\s*-a"
-a to make NAMEs indexed arrays (if supported)
pi@pi:~/twobucks $ declare -a ls_args
pi@pi:~/twobucks $ ls_args=( -l -t )
pi@pi:~/twobucks $ ls ${ls_args[@]}
total 0
-rw-r--r-- 1 pi pi 0 Apr 4 18:51 you
-rw-r--r-- 1 pi pi 0 Apr 4 18:50 owe
-rw-r--r-- 1 pi pi 0 Apr 4 18:49 me
-rw-r--r-- 1 pi pi 0 Apr 4 18:48 two
-rw-r--r-- 1 pi pi 0 Apr 4 18:47 bucks
pi@pi:~/twobucks $ # a day with arrays is a day without xargs
Your results are misleading ;) I will show you....
args="-nH -r -np -A '*.rpm'" [chandler@manjaro-budgie ~]$ wget_args=( ${args} ) [chandler@manjaro-budgie ~]$ echo ${wget_args[@]} -nH -r -np -A '*.rpm' [chandler@manjaro-budgie ~]$ wget ${wget_args[@]} http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/ --2018-04-04 20:38:28-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/ Resolving download.postgresql.org (download.postgresql.org)... 2001:4800:1501:1::246, 2a02:16a8:dc51::55, 2a02:c0:301:0:ffff::27, ... Connecting to download.postgresql.org (download.postgresql.org)|2001:4800:1501:1::246|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 84261 (82K) [text/html] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp’
pub/repos/yum/10/fe 100%[===================>] 82.29K --.-KB/s in 0.06s
2018-04-04 20:38:28 (1.40 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp’ saved [84261/84261]
Loading robots.txt; please ignore errors. --2018-04-04 20:38:28-- http://download.postgresql.org/robots.txt Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 404 Not Found 2018-04-04 20:38:28 ERROR 404: Not Found.
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp since it should be rejected.
--2018-04-04 20:38:28-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/ Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 28445 (28K) [text/html] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp’
pub/repos/yum/10/fe 100%[===================>] 27.78K --.-KB/s in 0.004s
2018-04-04 20:38:28 (7.43 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp’ saved [28445/28445]
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp since it should be rejected.
--2018-04-04 20:38:28-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/ Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 8522 (8.3K) [text/html] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp’
pub/repos/yum/10/fe 100%[===================>] 8.32K --.-KB/s in 0.001s
2018-04-04 20:38:28 (15.1 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp’ saved [8522/8522]
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp since it should be rejected.
FINISHED --2018-04-04 20:38:28-- Total wall clock time: 0.4s Downloaded: 3 files, 118K in 0.06s (1.87 MB/s)
Dir listing from http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/
Name↓ | Last Modified: | Size: | Type: |
---|---|---|---|
../ | - | Directory | |
drpms/ | 2017-Dec-04 07:17:30 | - | Directory |
repodata/ | 2017-Dec-04 07:17:37 | - | Directory |
amcheck_next10-1.0-1.f25.x86_64.rpm | 2017-Oct-15 16:47:10 | 20.7K | application/x-redhat-package-manager |
amcheck_next10-1.1-1.f25.x86_64.rpm | 2017-Oct-21 11:35:37 | 24.8K | application/x-redhat-package-manager |
amcheck_next10-debuginfo-1.0-1.f25.x86_64.rpm | 2017-Oct-15 16:47:11 | 56.3K | application/x-redhat-package-manager |
amcheck_next10-debuginfo-1.1-1.f25.x86_64.rpm | 2017-Oct-21 11:35:37 | 67.8K | application/x-redhat-package-manager |
babel-1.3-1.f25.noarch.rpm | 2017-Jan-08 17:55:10 | 13.6K | application/x-redhat-package-manager |
babel-doc-1.3-1.f25.noarch.rpm | 2017-Jan-08 17:55:11 | 301.2K | application/x-redhat-package-manager |
barman-2.2-1.f25.noarch.rpm | 2017-Jul-17 22:22:27 | 268.9K | application/x-redhat-package-manager |
barman-2.3-1.f25.noarch.rpm | 2017-Sep-13 09:23:18 | 273.8K | application/x-redhat-package-manager |
barman-cli-1.2-1.f25.noarch.rpm | 2017-Jan-08 07:31:28 | 14.8K | application/x-redhat-package-manager |
bgw_replstatus10-1.0.1-1.f25.x86_64.rpm | 2017-Oct-03 14:03:20 | 13.5K | application/x-redhat-package-manager |
bgw_replstatus10-debuginfo-1.0.1-1.f25.x86_64.rpm | 2017-Oct-03 14:03:20 | 30.4K | application/x-redhat-package-manager |
boxinfo-1.4.0-1.f25.noarch.rpm | 2017-May-18 07:26:22 | 35.7K | application/x-redhat-package-manager |
bucardo-5.4.1-1.f25.noarch.rpm | 2017-Jan-08 08:44:12 | 257.6K | application/x-redhat-package-manager |
check_postgres-2.22.0-1.f25.noarch.rpm | 2017-May-18 07:28:31 | 151.3K | application/x-redhat-package-manager |
check_postgres-2.23.0-1.f25.noarch.rpm | 2017-Nov-09 07:01:20 | 159.5K | application/x-redhat-package-manager |
citus_10-7.0.3-1.f25.x86_64.rpm | 2017-Oct-21 11:42:54 | 309.4K | application/x-redhat-package-manager |
citus_10-7.1.0-1.f25.x86_64.rpm | 2017-Nov-16 10:49:57 | 320.1K | application/x-redhat-package-manager |
citus_10-debuginfo-7.0.3-1.f25.x86_64.rpm | 2017-Oct-21 11:42:55 | 1.2M | application/x-redhat-package-manager |
citus_10-debuginfo-7.1.0-1.f25.x86_64.rpm | 2017-Nov-16 10:49:57 | 1.2M | application/x-redhat-package-manager |
citus_10-devel-7.0.3-1.f25.x86_64.rpm | 2017-Oct-21 11:42:54 | 51.0K | application/x-redhat-package-manager |
citus_10-devel-7.1.0-1.f25.x86_64.rpm | 2017-Nov-16 10:49:57 | 52.9K | application/x-redhat-package-manager |
cyanaudit10-1.0.2-1.f25.noarch.rpm | 2017-May-18 07:29:02 | 32.5K | application/x-redhat-package-manager |
dbi-link-2.0.0-3.f25.noarch.rpm | 2017-Jan-08 08:51:42 | 614.7K | application/x-redhat-package-manager |
django-htmlmin-0.10.0-1.f25.noarch.rpm | 2017-Jan-08 08:52:17 | 27.1K | application/x-redhat-package-manager |
emaj-2.0.1-1.f25.x86_64.rpm | 2017-May-18 07:29:17 | 1.9M | application/x-redhat-package-manager |
emaj-2.1.0-1.f25.x86_64.rpm | 2017-Oct-03 14:04:42 | 2.0M | application/x-redhat-package-manager |
geoip10-0.2.4-1.f25.noarch.rpm | 2017-Oct-03 14:04:59 | 10.4K | application/x-redhat-package-manager |
geos-3.5.0-1.f25.x86_64.rpm | 2017-May-18 07:48:25 | 550.4K | application/x-redhat-package-manager |
geos-debuginfo-3.5.0-1.f25.x86_64.rpm | 2017-May-18 07:48:25 | 4.3M | application/x-redhat-package-manager |
geos-devel-3.5.0-1.f25.x86_64.rpm | 2017-May-18 07:48:25 | 1.4M | application/x-redhat-package-manager |
geos-python-3.5.0-1.f25.x86_64.rpm | 2017-May-18 07:48:25 | 56.1K | application/x-redhat-package-manager |
hypopg_10-1.0.0-1.f25.x86_64.rpm | 2017-Jan-08 08:55:54 | 20.9K | application/x-redhat-package-manager |
hypopg_10-1.1.0-1.f25.x86_64.rpm | 2017-Oct-05 00:20:51 | 23.3K | application/x-redhat-package-manager |
hypopg_10-debuginfo-1.0.0-1.f25.x86_64.rpm | 2017-Jan-08 08:55:54 | 70.5K | application/x-redhat-package-manager |
hypopg_10-debuginfo-1.1.0-1.f25.x86_64.rpm | 2017-Oct-05 00:20:51 | 84.4K | application/x-redhat-package-manager |
ip4r10-2.1-1.f25.x86_64.rpm | 2017-Jan-08 08:57:41 | 68.7K | application/x-redhat-package-manager |
ip4r10-2.2-1.f25.x86_64.rpm | 2017-Oct-03 14:05:39 | 67.4K | application/x-redhat-package-manager |
ip4r10-debuginfo-2.1-1.f25.x86_64.rpm | 2017-Jan-08 08:57:41 | 132.7K | application/x-redhat-package-manager |
ip4r10-debuginfo-2.2-1.f25.x86_64.rpm | 2017-Oct-03 14:05:39 | 137.8K | application/x-redhat-package-manager |
jsquery_10-1.0.1-1.f25.x86_64.rpm | 2017-Nov-07 22:42:47 | 46.4K | application/x-redhat-package-manager |
jsquery_10-debuginfo-1.0.1-1.f25.x86_64.rpm | 2017-Nov-07 22:42:47 | 126.5K | application/x-redhat-package-manager |
jsquery_10-devel-1.0.1-1.f25.x86_64.rpm | 2017-Nov-07 22:42:47 | 8.4K | application/x-redhat-package-manager |
libpqxx-5.0.1-1.f25.x86_64.rpm | 2017-Apr-28 11:25:22 | 184.4K | application/x-redhat-package-manager |
libpqxx-5.0.1-2.f25.x86_64.rpm | 2017-Oct-15 20:08:34 | 184.3K | application/x-redhat-package-manager |
libpqxx-debuginfo-5.0.1-1.f25.x86_64.rpm | 2017-Apr-28 11:25:22 | 910.6K | application/x-redhat-package-manager |
libpqxx-debuginfo-5.0.1-2.f25.x86_64.rpm | 2017-Oct-15 20:08:34 | 910.7K | application/x-redhat-package-manager |
libpqxx-devel-5.0.1-1.f25.x86_64.rpm | 2017-Apr-28 11:25:22 | 92.2K | application/x-redhat-package-manager |
libpqxx-devel-5.0.1-2.f25.x86_64.rpm | 2017-Oct-15 20:08:34 | 92.3K | application/x-redhat-package-manager |
luapgsql-1.6.1-1.f25.x86_64.rpm | 2017-Jan-08 09:15:58 | 24.0K | application/x-redhat-package-manager |
luapgsql-debuginfo-1.6.1-1.f25.x86_64.rpm | 2017-Jan-08 09:15:58 | 11.0K | application/x-redhat-package-manager |
mailchimp_fdw10-0.3.1-1.f25.x86_64.rpm | 2017-Jan-08 09:17:01 | 9.9K | application/x-redhat-package-manager |
MigrationWizard-1.1-3.f25.noarch.rpm | 2017-Jun-06 16:33:16 | 1.5M | application/x-redhat-package-manager |
multicorn10-1.3.4-1.f25.x86_64.rpm | 2017-Nov-21 18:28:18 | 108.1K | application/x-redhat-package-manager |
multicorn10-debuginfo-1.3.4-1.f25.x86_64.rpm | 2017-Nov-21 18:28:18 | 133.9K | application/x-redhat-package-manager |
mysqlcompat10-0.0.7-1.f25.noarch.rpm | 2017-Jan-08 09:43:39 | 20.6K | application/x-redhat-package-manager |
nagios-plugins-pgactivity-2.0-1.noarch.rpm | 2017-May-18 07:28:15 | 51.0K | application/x-redhat-package-manager |
nagios-plugins-pgactivity-2.2-1.noarch.rpm | 2017-Jun-03 15:51:48 | 57.2K | application/x-redhat-package-manager |
ogr_fdw10-1.0.2-1.f25.x86_64.rpm | 2017-Jan-08 09:45:21 | 39.4K | application/x-redhat-package-manager |
ogr_fdw10-1.0.4-1.f25.x86_64.rpm | 2017-Oct-14 11:21:19 | 39.3K | application/x-redhat-package-manager |
ogr_fdw10-debuginfo-1.0.2-1.f25.x86_64.rpm | 2017-Jan-08 09:45:21 | 120.5K | application/x-redhat-package-manager |
ogr_fdw10-debuginfo-1.0.4-1.f25.x86_64.rpm | 2017-Oct-14 11:21:19 | 130.2K | application/x-redhat-package-manager |
ora2pg-18.1-1.f25.noarch.rpm | 2017-May-18 07:33:37 | 265.9K | application/x-redhat-package-manager |
ora2pg-18.2-1.f25.noarch.rpm | 2017-Sep-03 21:42:07 | 298.9K | application/x-redhat-package-manager |
orafce10-3.4.0-1.f25.x86_64.rpm | 2017-May-18 07:34:41 | 99.8K | application/x-redhat-package-manager |
orafce10-3.6.0-1.f25.x86_64.rpm | 2017-Oct-19 08:27:58 | 100.8K | application/x-redhat-package-manager |
orafce10-debuginfo-3.4.0-1.f25.x86_64.rpm | 2017-May-18 07:34:41 | 260.7K | application/x-redhat-package-manager |
orafce10-debuginfo-3.6.0-1.f25.x86_64.rpm | 2017-Oct-19 08:27:58 | 258.3K | application/x-redhat-package-manager |
pagila10-0.10.1-1.f25.noarch.rpm | 2017-May-18 08:54:24 | 560.8K | application/x-redhat-package-manager |
pagila10-2.0.1-1.f25.noarch.rpm | 2017-Jun-20 13:23:20 | 1.1M | application/x-redhat-package-manager |
pg_activity-1.3.1-1.f25.noarch.rpm | 2017-May-18 07:36:57 | 44.5K | application/x-redhat-package-manager |
pg_bloat_check-2.3.3-1.f25.noarch.rpm | 2017-May-18 07:42:11 | 19.4K | application/x-redhat-package-manager |
pg_bloat_check-2.3.5-1.f25.noarch.rpm | 2017-Oct-03 14:08:03 | 19.8K | application/x-redhat-package-manager |
pg_bulkload10-3.1.14-1.f25.x86_64.rpm | 2017-Nov-13 09:41:56 | 177.3K | application/x-redhat-package-manager |
pg_bulkload10-debuginfo-3.1.14-1.f25.x86_64.rpm | 2017-Nov-13 09:41:56 | 340.4K | application/x-redhat-package-manager |
pg_comparator10-2.2.5-1.f25.x86_64.rpm | 2017-Oct-03 14:08:46 | 53.1K | application/x-redhat-package-manager |
pg_comparator10-debuginfo-2.2.5-1.f25.x86_64.rpm | 2017-Oct-03 14:08:46 | 29.7K | application/x-redhat-package-manager |
pg_fkpart10-1.6.0-1.f25.noarch.rpm | 2017-Oct-03 14:09:29 | 22.8K | application/x-redhat-package-manager |
pg_jobmon10-1.3.3-1.f25.noarch.rpm | 2017-May-18 08:05:06 | 29.4K | application/x-redhat-package-manager |
pg_partman10-3.0.1-1.f25.x86_64.rpm | 2017-Oct-03 14:09:47 | 178.8K | application/x-redhat-package-manager |
pg_partman10-3.1.0-1.f25.x86_64.rpm | 2017-Oct-05 00:22:28 | 184.1K | application/x-redhat-package-manager |
pg_partman10-debuginfo-3.0.1-1.f25.x86_64.rpm | 2017-Oct-03 14:09:47 | 42.1K | application/x-redhat-package-manager |
pg_partman10-debuginfo-3.1.0-1.f25.x86_64.rpm | 2017-Oct-05 00:22:28 | 42.2K | application/x-redhat-package-manager |
pg_pathman10-1.4.1-1.f25.x86_64.rpm | 2017-Jun-11 07:33:06 | 119.8K | application/x-redhat-package-manager |
pg_pathman10-1.4.7-1.f25.x86_64.rpm | 2017-Oct-14 11:03:21 | 113.3K | application/x-redhat-package-manager |
pg_pathman10-debuginfo-1.4.1-1.f25.x86_64.rpm | 2017-Jun-11 07:33:06 | 397.1K | application/x-redhat-package-manager |
pg_pathman10-debuginfo-1.4.7-1.f25.x86_64.rpm | 2017-Oct-14 11:03:22 | 392.5K | application/x-redhat-package-manager |
pg_qualstats10-1.0.2-1.f25.x86_64.rpm | 2017-Oct-03 14:11:24 | 28.9K | application/x-redhat-package-manager |
pg_qualstats10-1.0.3-1.f25.x86_64.rpm | 2017-Nov-18 11:34:46 | 30.7K | application/x-redhat-package-manager |
pg_qualstats10-debuginfo-1.0.2-1.f25.x86_64.rpm | 2017-Oct-03 14:11:24 | 75.4K | application/x-redhat-package-manager |
pg_qualstats10-debuginfo-1.0.3-1.f25.x86_64.rpm | 2017-Nov-18 11:34:47 | 80.2K | application/x-redhat-package-manager |
pg_repack10-1.4.2-1.f25.x86_64.rpm | 2017-Oct-14 11:17:31 | 60.4K | application/x-redhat-package-manager |
pg_repack10-debuginfo-1.4.2-1.f25.x86_64.rpm | 2017-Oct-14 11:17:31 | 154.3K | application/x-redhat-package-manager |
pg_sample-1.09-1.f25.x86_64.rpm | 2017-Jan-08 09:54:44 | 14.0K | application/x-redhat-package-manager |
pg_slotsync10-1.0-1.f25.x86_64.rpm | 2017-May-18 08:51:28 | 11.5K | application/x-redhat-package-manager |
pg_slotsync10-debuginfo-1.0-1.f25.x86_64.rpm | 2017-May-18 08:51:28 | 22.4K | application/x-redhat-package-manager |
pg_stat_kcache10-2.0.3-1.f25.x86_64.rpm | 2017-Oct-03 14:12:49 | 17.2K | application/x-redhat-package-manager |
pg_stat_kcache10-debuginfo-2.0.3-1.f25.x86_64.rpm | 2017-Oct-03 14:12:49 | 54.1K | application/x-redhat-package-manager |
pg_top10-3.7.0-5.f25.x86_64.rpm | 2017-Oct-03 14:13:12 | 58.1K | application/x-redhat-package-manager |
pg_top10-debuginfo-3.7.0-5.f25.x86_64.rpm | 2017-Oct-03 14:13:12 | 147.5K | application/x-redhat-package-manager |
pg_track_settings10-1.0.0-2.f25.x86_64.rpm | 2017-Oct-03 14:13:26 | 11.3K | application/x-redhat-package-manager |
pgadmin4-python3-blinker-1.4-2.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 111.1K | application/x-redhat-package-manager |
pgadmin4-python3-fixtures-3.0.0-4.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 95.0K | application/x-redhat-package-manager |
pgadmin4-python3-flask_wtf-0.12-2.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 59.2K | application/x-redhat-package-manager |
pgadmin4-python3-flask-0.11.1-7.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 135.2K | application/x-redhat-package-manager |
pgadmin4-python3-flask-babel-0.11.1-3.f25.noarch.rpm | 2017-Jul-14 12:27:08 | 53.3K | application/x-redhat-package-manager |
pgadmin4-python3-flask-gravatar-0.4.2-2.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 14.8K | application/x-redhat-package-manager |
pgadmin4-python3-flask-htmlmin-1.2-4.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 11.9K | application/x-redhat-package-manager |
pgadmin4-python3-flask-login-0.3.2-1.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 26.5K | application/x-redhat-package-manager |
pgadmin4-python3-Flask-Mail-0.9.1-3.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 23.2K | application/x-redhat-package-manager |
pgadmin4-python3-flask-paranoid-0.1-1.f25.noarch.rpm | 2017-Sep-06 23:55:22 | 13.8K | application/x-redhat-package-manager |
pgadmin4-python3-flask-principal-0.4.0-13.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 19.4K | application/x-redhat-package-manager |
pgadmin4-python3-flask-security-1.7.5-3.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 61.9K | application/x-redhat-package-manager |
pgadmin4-python3-flask-wtf-0.12-2.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 59.3K | application/x-redhat-package-manager |
pgadmin4-python3-html5lib-1.0b3-1.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 211.6K | application/x-redhat-package-manager |
pgadmin4-python3-pyrsistent-0.11.13-3.f25.x86_64.rpm | 2017-Apr-21 08:46:42 | 92.3K | application/x-redhat-package-manager |
pgadmin4-python3-pyrsistent-debuginfo-0.11.13-3.f25.x86_64.rpm | 2017-Apr-21 08:46:42 | 46.3K | application/x-redhat-package-manager |
pgadmin4-python3-wtforms-2.1-2.f25.noarch.rpm | 2017-Apr-21 08:46:44 | 390.9K | application/x-redhat-package-manager |
pgadmin4-v1-1.5-5.f25.x86_64.rpm | 2017-Jul-06 10:46:44 | 110.8K | application/x-redhat-package-manager |
pgadmin4-v1-1.6-2.f25.x86_64.rpm | 2017-Jul-14 12:33:34 | 119.1K | application/x-redhat-package-manager |
pgadmin4-v1-debuginfo-1.5-5.f25.x86_64.rpm | 2017-Jul-06 10:46:45 | 21.5K | application/x-redhat-package-manager |
pgadmin4-v1-debuginfo-1.6-2.f25.x86_64.rpm | 2017-Jul-14 12:33:35 | 22.7K | application/x-redhat-package-manager |
pgadmin4-v1-docs-1.5-5.f25.noarch.rpm | 2017-Jul-06 10:46:45 | 33.7M | application/x-redhat-package-manager |
pgadmin4-v1-docs-1.6-2.f25.noarch.rpm | 2017-Jul-14 12:33:35 | 34.1M | application/x-redhat-package-manager |
pgadmin4-v1-web-1.5-5.f25.noarch.rpm | 2017-Jul-06 10:46:44 | 4.3M | application/x-redhat-package-manager |
pgadmin4-v1-web-1.6-2.f25.noarch.rpm | 2017-Jul-14 12:33:34 | 5.1M | application/x-redhat-package-manager |
pgadmin4-v2-2.0-1.f25.x86_64.rpm | 2017-Oct-01 02:34:04 | 105.8K | application/x-redhat-package-manager |
pgadmin4-v2-2.0-rc1_1.f25.x86_64.rpm | 2017-Sep-13 15:52:29 | 105.4K | application/x-redhat-package-manager |
pgadmin4-v2-debuginfo-2.0-1.f25.x86_64.rpm | 2017-Oct-01 02:34:04 | 23.4K | application/x-redhat-package-manager |
pgadmin4-v2-debuginfo-2.0-rc1_1.f25.x86_64.rpm | 2017-Sep-13 15:52:30 | 23.0K | application/x-redhat-package-manager |
pgadmin4-v2-docs-2.0-1.f25.noarch.rpm | 2017-Oct-01 02:34:04 | 34.1M | application/x-redhat-package-manager |
pgadmin4-v2-docs-2.0-rc1_1.f25.noarch.rpm | 2017-Sep-13 15:52:30 | 34.2M | application/x-redhat-package-manager |
pgadmin4-v2-web-2.0-1.f25.noarch.rpm | 2017-Oct-01 02:34:04 | 5.2M | application/x-redhat-package-manager |
pgadmin4-v2-web-2.0-rc1_1.f25.noarch.rpm | 2017-Sep-13 15:52:29 | 5.2M | application/x-redhat-package-manager |
pgagent_10-3.4.0-10.f25.x86_64.rpm | 2017-Oct-18 08:37:51 | 45.4K | application/x-redhat-package-manager |
pgagent_10-debuginfo-3.4.0-10.f25.x86_64.rpm | 2017-Oct-18 08:37:51 | 147.9K | application/x-redhat-package-manager |
pgaudit_10-1.0.4-1.f25.x86_64.rpm | 2017-Jan-08 17:40:02 | 23.7K | application/x-redhat-package-manager |
pgaudit_10-debuginfo-1.0.4-1.f25.x86_64.rpm | 2017-Jan-08 17:40:02 | 74.0K | application/x-redhat-package-manager |
pgbackman-1.1.0-1.f25.noarch.rpm | 2017-Oct-03 14:07:24 | 132.0K | application/x-redhat-package-manager |
pgbackrest-1.25-1.f25.noarch.rpm | 2017-Oct-26 10:01:39 | 167.5K | application/x-redhat-package-manager |
pgbackrest-1.26-1.f25.noarch.rpm | 2017-Nov-26 15:46:12 | 173.3K | application/x-redhat-package-manager |
pgbackrest-1.26-2.f25.x86_64.rpm | 2017-Dec-04 06:59:19 | 238.1K | application/x-redhat-package-manager |
pgbadger-9.1-1.f25.noarch.rpm | 2017-Jun-08 18:07:39 | 300.4K | application/x-redhat-package-manager |
pgbadger-9.2-1.f25.noarch.rpm | 2017-Nov-13 09:40:25 | 302.0K | application/x-redhat-package-manager |
pgbconsole-0.1.1-1.f25.x86_64.rpm | 2017-May-18 07:41:54 | 29.8K | application/x-redhat-package-manager |
pgbconsole-debuginfo-0.1.1-1.f25.x86_64.rpm | 2017-May-18 07:41:54 | 10.3K | application/x-redhat-package-manager |
pgbconsole10-0.1.1-1.f25.x86_64.rpm | 2017-Oct-03 14:07:47 | 29.8K | application/x-redhat-package-manager |
pgbconsole10-debuginfo-0.1.1-1.f25.x86_64.rpm | 2017-Oct-03 14:07:47 | 10.3K | application/x-redhat-package-manager |
pgbouncer-1.7.2-6.f25.x86_64.rpm | 2017-May-18 07:43:52 | 166.8K | application/x-redhat-package-manager |
pgbouncer-1.7.2-7.f25.x86_64.rpm | 2017-Jul-18 13:34:20 | 166.9K | application/x-redhat-package-manager |
pgbouncer-debuginfo-1.7.2-6.f25.x86_64.rpm | 2017-May-18 07:43:52 | 484.4K | application/x-redhat-package-manager |
pgbouncer-debuginfo-1.7.2-7.f25.x86_64.rpm | 2017-Jul-18 13:34:21 | 484.6K | application/x-redhat-package-manager |
pgbson10-1.0.1-2.f25.x86_64.rpm | 2017-Jun-06 14:21:22 | 478.4K | application/x-redhat-package-manager |
pgbson10-debuginfo-1.0.1-2.f25.x86_64.rpm | 2017-Jun-06 14:21:22 | 55.7K | application/x-redhat-package-manager |
pgcenter-0.3.0-1.f25.x86_64.rpm | 2017-May-18 07:56:46 | 45.7K | application/x-redhat-package-manager |
pgcenter-debuginfo-0.3.0-1.f25.x86_64.rpm | 2017-May-18 07:56:46 | 73.9K | application/x-redhat-package-manager |
pgcli-1.2.0-1.f25.x86_64.rpm | 2017-May-18 07:57:48 | 126.3K | application/x-redhat-package-manager |
pgcluu-2.5-1.f25.noarch.rpm | 2017-May-18 07:57:57 | 342.2K | application/x-redhat-package-manager |
pgcluu-2.6-1.f25.noarch.rpm | 2017-Jul-15 11:11:43 | 306.5K | application/x-redhat-package-manager |
pgdg-fedora10-10-2.f25.noarch.rpm | 2017-May-18 06:26:46 | 8.4K | application/x-redhat-package-manager |
pgdg-fedora10-10-3.noarch.rpm | 2017-Sep-24 09:56:34 | 8.5K | application/x-redhat-package-manager |
pgexportdoc10-0.1.1-1.f25.x86_64.rpm | 2017-Oct-03 14:09:11 | 18.4K | application/x-redhat-package-manager |
pgexportdoc10-debuginfo-0.1.1-1.f25.x86_64.rpm | 2017-Oct-03 14:09:11 | 29.8K | application/x-redhat-package-manager |
pgfincore10-1.1.2-2.f25.x86_64.rpm | 2017-May-18 08:00:05 | 21.1K | application/x-redhat-package-manager |
pgfincore10-debuginfo-1.1.2-2.f25.x86_64.rpm | 2017-May-18 08:00:06 | 51.8K | application/x-redhat-package-manager |
pgFormatter-1.6-1.f25.noarch.rpm | 2017-May-18 08:03:59 | 42.5K | application/x-redhat-package-manager |
pghoard-1.4.0-1.f25.noarch.rpm | 2017-May-18 08:04:41 | 158.8K | application/x-redhat-package-manager |
pgimportdoc10-0.1.2-1.f25.x86_64.rpm | 2017-Jul-05 10:14:23 | 18.9K | application/x-redhat-package-manager |
pgimportdoc10-debuginfo-0.1.2-1.f25.x86_64.rpm | 2017-Jul-05 10:14:23 | 56.0K | application/x-redhat-package-manager |
pgloader-3.4.1-1.f25.x86_64.rpm | 2017-Jul-06 23:08:12 | 14.1M | application/x-redhat-package-manager |
pgmemcache-10-2.3.0-1.f25.x86_64.rpm | 2017-May-18 08:06:03 | 23.9K | application/x-redhat-package-manager |
pgmemcache-10-2.3.0-2.f25.x86_64.rpm | 2017-Jul-17 20:25:52 | 24.0K | application/x-redhat-package-manager |
pgmemcache-10-debuginfo-2.3.0-1.f25.x86_64.rpm | 2017-May-18 08:06:03 | 61.1K | application/x-redhat-package-manager |
pgmemcache-10-debuginfo-2.3.0-2.f25.x86_64.rpm | 2017-Jul-17 20:25:52 | 61.2K | application/x-redhat-package-manager |
pgpool-II-10-3.6.7-1.f25.x86_64.rpm | 2017-Nov-08 21:33:42 | 545.3K | application/x-redhat-package-manager |
pgpool-II-10-3.7.0-1.f25.x86_64.rpm | 2017-Nov-26 15:55:03 | 556.0K | application/x-redhat-package-manager |
pgpool-II-10-debuginfo-3.6.7-1.f25.x86_64.rpm | 2017-Nov-08 21:33:42 | 1.7M | application/x-redhat-package-manager |
pgpool-II-10-debuginfo-3.7.0-1.f25.x86_64.rpm | 2017-Nov-26 15:55:04 | 1.7M | application/x-redhat-package-manager |
pgpool-II-10-devel-3.6.7-1.f25.x86_64.rpm | 2017-Nov-08 21:33:42 | 17.9K | application/x-redhat-package-manager |
pgpool-II-10-devel-3.7.0-1.f25.x86_64.rpm | 2017-Nov-26 15:55:04 | 15.3K | application/x-redhat-package-manager |
pgpool-II-10-extensions-3.6.7-1.f25.x86_64.rpm | 2017-Nov-08 21:33:42 | 23.5K | application/x-redhat-package-manager |
pgpool-II-10-extensions-3.7.0-1.f25.x86_64.rpm | 2017-Nov-26 15:55:04 | 20.9K | application/x-redhat-package-manager |
pgpoolAdmin-3.6.0-1.f25.noarch.rpm | 2017-Mar-04 20:29:42 | 888.3K | application/x-redhat-package-manager |
pgreplay10-1.3.0-1.f25.x86_64.rpm | 2017-Jun-03 15:52:08 | 44.9K | application/x-redhat-package-manager |
pgreplay10-debuginfo-1.3.0-1.f25.x86_64.rpm | 2017-Jun-03 15:52:08 | 77.0K | application/x-redhat-package-manager |
pgrouting_10-2.4.2-1.f25.x86_64.rpm | 2017-Aug-16 14:29:15 | 535.7K | application/x-redhat-package-manager |
pgrouting_10-2.5.2-1.f25.x86_64.rpm | 2017-Nov-29 11:48:33 | 601.4K | application/x-redhat-package-manager |
pgrouting_10-debuginfo-2.4.2-1.f25.x86_64.rpm | 2017-Aug-16 14:29:16 | 5.1M | application/x-redhat-package-manager |
pgrouting_10-debuginfo-2.5.2-1.f25.x86_64.rpm | 2017-Nov-29 11:48:33 | 6.0M | application/x-redhat-package-manager |
pgsi-1.7.1-1.f25.noarch.rpm | 2017-May-18 08:52:16 | 28.9K | application/x-redhat-package-manager |
pgtap10-0.98.0-1.f25.noarch.rpm | 2017-Nov-07 22:26:22 | 91.7K | application/x-redhat-package-manager |
pgxnclient-1.2.1-2.f25.x86_64.rpm | 2017-May-18 08:53:07 | 142.5K | application/x-redhat-package-manager |
pldebugger10-1.0-1.f25.x86_64.rpm | 2017-Jun-05 12:43:33 | 35.5K | application/x-redhat-package-manager |
pldebugger10-debuginfo-1.0-1.f25.x86_64.rpm | 2017-Jun-05 12:43:33 | 138.9K | application/x-redhat-package-manager |
plpgsql_check_10-1.2.0-1.f25.x86_64.rpm | 2017-Jun-03 15:51:56 | 37.5K | application/x-redhat-package-manager |
plpgsql_check_10-1.2.1-1.f25.x86_64.rpm | 2017-Oct-03 14:14:00 | 38.7K | application/x-redhat-package-manager |
plpgsql_check_10-debuginfo-1.2.0-1.f25.x86_64.rpm | 2017-Jun-03 15:51:56 | 112.0K | application/x-redhat-package-manager |
plpgsql_check_10-debuginfo-1.2.1-1.f25.x86_64.rpm | 2017-Oct-03 14:14:01 | 116.8K | application/x-redhat-package-manager |
plproxy10-2.8-1.f25.x86_64.rpm | 2017-Oct-09 18:18:49 | 45.7K | application/x-redhat-package-manager |
plproxy10-debuginfo-2.8-1.f25.x86_64.rpm | 2017-Oct-09 18:18:49 | 169.9K | application/x-redhat-package-manager |
plr10-8.3.0.17-1.f25.x86_64.rpm | 2017-Oct-03 14:14:59 | 41.3K | application/x-redhat-package-manager |
plr10-debuginfo-8.3.0.17-1.f25.x86_64.rpm | 2017-Oct-03 14:14:59 | 127.8K | application/x-redhat-package-manager |
plsh10-1.20130823-2.f25.x86_64.rpm | 2017-Oct-03 14:10:57 | 19.4K | application/x-redhat-package-manager |
plsh10-debuginfo-1.20130823-2.f25.x86_64.rpm | 2017-Oct-03 14:10:57 | 41.3K | application/x-redhat-package-manager |
plv8_10-2.0.3-1.f25.x86_64.rpm | 2017-Jun-03 15:51:50 | 139.9K | application/x-redhat-package-manager |
plv8_10-debuginfo-2.0.3-1.f25.x86_64.rpm | 2017-Jun-03 15:51:51 | 17.0K | application/x-redhat-package-manager |
postgis24_10-2.4.1-1.f25.x86_64.rpm | 2017-Oct-21 12:43:03 | 4.2M | application/x-redhat-package-manager |
postgis24_10-2.4.2-1.f25.x86_64.rpm | 2017-Nov-16 16:01:50 | 6.5M | application/x-redhat-package-manager |
postgis24_10-client-2.4.1-1.f25.x86_64.rpm | 2017-Oct-21 12:43:03 | 121.9K | application/x-redhat-package-manager |
postgis24_10-client-2.4.2-1.f25.x86_64.rpm | 2017-Nov-16 16:01:50 | 235.7K | application/x-redhat-package-manager |
postgis24_10-debuginfo-2.4.0-1.f25.x86_64.rpm | 2017-Oct-03 14:18:51 | 2.9M | application/x-redhat-package-manager |
postgis24_10-debuginfo-2.4.1-1.f25.x86_64.rpm | 2017-Oct-21 12:43:03 | 2.9M | application/x-redhat-package-manager |
postgis24_10-devel-2.4.1-1.f25.x86_64.rpm | 2017-Oct-21 12:43:03 | 266.1K | application/x-redhat-package-manager |
postgis24_10-devel-2.4.2-1.f25.x86_64.rpm | 2017-Nov-16 16:01:50 | 266.2K | application/x-redhat-package-manager |
postgis24_10-docs-2.4.1-1.f25.x86_64.rpm | 2017-Oct-21 12:43:03 | 4.6M | application/x-redhat-package-manager |
postgis24_10-docs-2.4.2-1.f25.x86_64.rpm | 2017-Nov-16 16:01:50 | 4.6M | application/x-redhat-package-manager |
postgis24_10-utils-2.4.1-1.f25.x86_64.rpm | 2017-Oct-21 12:43:03 | 41.1K | application/x-redhat-package-manager |
postgis24_10-utils-2.4.2-1.f25.x86_64.rpm | 2017-Nov-16 16:01:50 | 41.3K | application/x-redhat-package-manager |
postgresql-jdbc-42.1.3-1.f25.noarch.rpm | 2017-Jul-15 09:46:29 | 518.4K | application/x-redhat-package-manager |
postgresql-jdbc-42.1.4-1.f25.noarch.rpm | 2017-Aug-02 10:05:39 | 518.8K | application/x-redhat-package-manager |
postgresql-jdbc-javadoc-42.1.3-1.f25.noarch.rpm | 2017-Jul-15 09:46:29 | 452.4K | application/x-redhat-package-manager |
postgresql-jdbc-javadoc-42.1.4-1.f25.noarch.rpm | 2017-Aug-02 10:05:39 | 452.6K | application/x-redhat-package-manager |
postgresql-unit10-3.0-1.f25.x86_64.rpm | 2017-May-18 08:46:21 | 67.2K | application/x-redhat-package-manager |
postgresql-unit10-3.1-1.f25.x86_64.rpm | 2017-Oct-03 14:24:46 | 67.2K | application/x-redhat-package-manager |
postgresql-unit10-debuginfo-3.0-1.f25.x86_64.rpm | 2017-May-18 08:46:21 | 81.0K | application/x-redhat-package-manager |
postgresql-unit10-debuginfo-3.1-1.f25.x86_64.rpm | 2017-Oct-03 14:24:46 | 81.0K | application/x-redhat-package-manager |
postgresql10-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:10 | 1.5M | application/x-redhat-package-manager |
postgresql10-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:17 | 1.5M | application/x-redhat-package-manager |
postgresql10-contrib-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:11 | 596.0K | application/x-redhat-package-manager |
postgresql10-contrib-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:18 | 596.3K | application/x-redhat-package-manager |
postgresql10-debuginfo-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:12 | 18.6M | application/x-redhat-package-manager |
postgresql10-debuginfo-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:23 | 18.6M | application/x-redhat-package-manager |
postgresql10-devel-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:11 | 2.0M | application/x-redhat-package-manager |
postgresql10-devel-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:24 | 2.0M | application/x-redhat-package-manager |
postgresql10-docs-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:10 | 13.7M | application/x-redhat-package-manager |
postgresql10-docs-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:27 | 13.8M | application/x-redhat-package-manager |
postgresql10-libs-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:10 | 355.0K | application/x-redhat-package-manager |
postgresql10-libs-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:28 | 355.8K | application/x-redhat-package-manager |
postgresql10-odbc-09.06.0500-1PGDG.f25.x86_64.rpm | 2017-Oct-03 14:24:13 | 289.6K | application/x-redhat-package-manager |
postgresql10-odbc-10.00.0000-1PGDG.f25.x86_64.rpm | 2017-Oct-15 13:50:22 | 292.2K | application/x-redhat-package-manager |
postgresql10-plperl-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:11 | 60.3K | application/x-redhat-package-manager |
postgresql10-plperl-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:29 | 60.8K | application/x-redhat-package-manager |
postgresql10-plpython-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:11 | 75.9K | application/x-redhat-package-manager |
postgresql10-plpython-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:29 | 76.3K | application/x-redhat-package-manager |
postgresql10-plpython3-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:11 | 75.2K | application/x-redhat-package-manager |
postgresql10-plpython3-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:30 | 75.7K | application/x-redhat-package-manager |
postgresql10-pltcl-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:11 | 36.7K | application/x-redhat-package-manager |
postgresql10-pltcl-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:30 | 37.1K | application/x-redhat-package-manager |
postgresql10-server-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:10 | 4.3M | application/x-redhat-package-manager |
postgresql10-server-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:31 | 4.3M | application/x-redhat-package-manager |
postgresql10-tcl-2.3.1-1.f25.x86_64.rpm | 2017-Aug-06 10:18:29 | 327.9K | application/x-redhat-package-manager |
postgresql10-tcl-debuginfo-2.3.1-1.f25.x86_64.rpm | 2017-Aug-06 10:18:29 | 11.2K | application/x-redhat-package-manager |
postgresql10-test-10.0-1PGDG.f25.x86_64.rpm | 2017-Oct-03 10:51:11 | 1.6M | application/x-redhat-package-manager |
postgresql10-test-10.1-1PGDG.f25.x86_64.rpm | 2017-Nov-14 10:06:32 | 1.6M | application/x-redhat-package-manager |
powa_10-3.1.1-1.f25.x86_64.rpm | 2017-Sep-21 07:41:34 | 61.7K | application/x-redhat-package-manager |
powa_10-web-3.1.1-1.f25.x86_64.rpm | 2017-Sep-21 07:41:34 | 568.0K | application/x-redhat-package-manager |
proj-4.9.2-1.f25.x86_64.rpm | 2017-May-18 08:52:47 | 205.7K | application/x-redhat-package-manager |
proj-debuginfo-4.9.2-1.f25.x86_64.rpm | 2017-May-18 08:52:47 | 449.6K | application/x-redhat-package-manager |
proj-devel-4.9.2-1.f25.x86_64.rpm | 2017-May-18 08:52:47 | 26.0K | application/x-redhat-package-manager |
proj-epsg-4.9.2-1.f25.x86_64.rpm | 2017-May-18 08:52:47 | 67.4K | application/x-redhat-package-manager |
proj-nad-4.9.2-1.f25.x86_64.rpm | 2017-May-18 08:52:47 | 2.1M | application/x-redhat-package-manager |
proj-static-4.9.2-1.f25.x86_64.rpm | 2017-May-18 08:52:47 | 179.6K | application/x-redhat-package-manager |
pspg-0.7.2-1.f25.x86_64.rpm | 2017-Nov-26 15:59:36 | 26.9K | application/x-redhat-package-manager |
pspg-0.7.5-1.f25.x86_64.rpm | 2017-Dec-04 07:10:51 | 27.5K | application/x-redhat-package-manager |
pspg-debuginfo-0.7.2-1.f25.x86_64.rpm | 2017-Nov-26 15:59:36 | 52.9K | application/x-redhat-package-manager |
pspg-debuginfo-0.7.5-1.f25.x86_64.rpm | 2017-Dec-04 07:10:51 | 53.9K | application/x-redhat-package-manager |
PyGreSQL-5.0.3-1.f25.x86_64.rpm | 2017-May-18 08:50:45 | 105.1K | application/x-redhat-package-manager |
PyGreSQL-debuginfo-5.0.3-1.f25.x86_64.rpm | 2017-May-18 08:50:45 | 133.1K | application/x-redhat-package-manager |
python-ldap2pg-3.0-1.f25.x86_64.rpm | 2017-Oct-03 14:06:18 | 45.5K | application/x-redhat-package-manager |
python-ldap2pg-doc-3.0-1.f25.x86_64.rpm | 2017-Oct-03 14:06:19 | 193.1K | application/x-redhat-package-manager |
python-psycopg2-2.7.1-1.f25.x86_64.rpm | 2017-May-18 08:49:30 | 155.1K | application/x-redhat-package-manager |
python-psycopg2-2.7.3-1.f25.x86_64.rpm | 2017-Jul-29 22:17:25 | 156.8K | application/x-redhat-package-manager |
python-psycopg2-debug-2.7.1-1.f25.x86_64.rpm | 2017-May-18 08:49:30 | 89.4K | application/x-redhat-package-manager |
python-psycopg2-debug-2.7.3-1.f25.x86_64.rpm | 2017-Jul-29 22:17:25 | 90.5K | application/x-redhat-package-manager |
python-psycopg2-debuginfo-2.7.1-1.f25.x86_64.rpm | 2017-May-18 08:49:30 | 522.9K | application/x-redhat-package-manager |
python-psycopg2-debuginfo-2.7.3-1.f25.x86_64.rpm | 2017-Jul-29 22:17:25 | 534.0K | application/x-redhat-package-manager |
python-psycopg2-doc-2.7.1-1.f25.x86_64.rpm | 2017-May-18 08:49:30 | 160.4K | application/x-redhat-package-manager |
python-psycopg2-doc-2.7.3-1.f25.x86_64.rpm | 2017-Jul-29 22:17:25 | 160.9K | application/x-redhat-package-manager |
python-wsgiref-0.1.2-17.f25.noarch.rpm | 2017-Jan-08 18:00:21 | 36.4K | application/x-redhat-package-manager |
python-wtforms-2.1-1.f25.noarch.rpm | 2017-Jan-08 18:00:48 | 366.9K | application/x-redhat-package-manager |
python3-babel-1.3-1.f25.noarch.rpm | 2017-Jan-08 17:55:11 | 2.4M | application/x-redhat-package-manager |
python3-blinker-1.4-1.f25.noarch.rpm | 2017-Jan-08 17:49:29 | 110.8K | application/x-redhat-package-manager |
python3-dateutil-2.5.3-3.f25.noarch.rpm | 2017-Jan-08 17:50:03 | 246.5K | application/x-redhat-package-manager |
python3-fixtures-3.0.0-3.f25.noarch.rpm | 2017-Jan-08 17:50:29 | 94.5K | application/x-redhat-package-manager |
python3-flask-0.11.1-5.f25.noarch.rpm | 2017-Jan-08 17:50:50 | 125.4K | application/x-redhat-package-manager |
python3-flask-babel-0.11.1-1.f25.noarch.rpm | 2017-Jan-08 17:51:26 | 53.0K | application/x-redhat-package-manager |
python3-flask-gravatar-0.4.2-1.f25.noarch.rpm | 2017-Jan-08 17:51:43 | 13.7K | application/x-redhat-package-manager |
python3-flask-htmlmin-1.2-3.f25.noarch.rpm | 2017-Feb-17 23:51:05 | 11.3K | application/x-redhat-package-manager |
python3-flask-login-0.3.2-1.f25.noarch.rpm | 2017-Jan-08 17:52:10 | 25.4K | application/x-redhat-package-manager |
python3-flask-mail-0.9.1-2.f25.noarch.rpm | 2017-Jan-08 17:52:26 | 21.6K | application/x-redhat-package-manager |
python3-flask-principal-0.4.0-12.f25.noarch.rpm | 2017-Jan-08 17:52:41 | 17.4K | application/x-redhat-package-manager |
python3-flask-security-1.7.5-2.f25.noarch.rpm | 2017-Jan-08 17:53:02 | 61.1K | application/x-redhat-package-manager |
python3-flask-sqlalchemy-2.1-3.f25.noarch.rpm | 2017-Jan-08 17:53:16 | 107.5K | application/x-redhat-package-manager |
python3-flask-wtf-0.12-1.f25.noarch.rpm | 2017-Jan-08 17:53:51 | 58.9K | application/x-redhat-package-manager |
python3-ldap2pg-3.0-1.f25.x86_64.rpm | 2017-Oct-03 14:06:18 | 25.0K | application/x-redhat-package-manager |
python3-ldap2pg-debug-3.0-1.f25.x86_64.rpm | 2017-Oct-03 14:06:19 | 30.1K | application/x-redhat-package-manager |
python3-mimeparse-1.5.2-1.f25.noarch.rpm | 2017-Jan-08 17:57:53 | 12.9K | application/x-redhat-package-manager |
python3-pgcli-1.2.0-1.f25.x86_64.rpm | 2017-May-18 07:57:48 | 130.1K | application/x-redhat-package-manager |
python3-pgspecial-1.8.0-1.f25.noarch.rpm | 2017-Jun-06 10:07:11 | 59.2K | application/x-redhat-package-manager |
python3-psycopg2-2.7.1-1.f25.x86_64.rpm | 2017-May-18 08:49:30 | 157.1K | application/x-redhat-package-manager |
python3-psycopg2-2.7.3-1.f25.x86_64.rpm | 2017-Jul-29 22:17:25 | 158.7K | application/x-redhat-package-manager |
python3-psycopg2-debug-2.7.1-1.f25.x86_64.rpm | 2017-May-18 08:49:30 | 90.2K | application/x-redhat-package-manager |
python3-psycopg2-debug-2.7.3-1.f25.x86_64.rpm | 2017-Jul-29 22:17:25 | 91.4K | application/x-redhat-package-manager |
python3-PyGreSQL-5.0.3-1.f25.x86_64.rpm | 2017-May-18 08:50:45 | 106.7K | application/x-redhat-package-manager |
python3-pyrsistent-0.11.13-2.x86_64.rpm | 2017-Jan-08 17:58:24 | 91.8K | application/x-redhat-package-manager |
python3-simplejson-3.8.2-1.f25.x86_64.rpm | 2017-Jan-08 17:58:54 | 110.5K | application/x-redhat-package-manager |
python3-wtforms-2.1-1.f25.noarch.rpm | 2017-Jan-08 18:00:48 | 371.6K | application/x-redhat-package-manager |
repmgr10-3.3.2-1.f25.x86_64.rpm | 2017-Jun-11 07:28:08 | 158.7K | application/x-redhat-package-manager |
repmgr10-4.0.0-1.f25.x86_64.rpm | 2017-Nov-21 18:20:32 | 185.9K | application/x-redhat-package-manager |
repmgr10-debuginfo-3.3.2-1.f25.x86_64.rpm | 2017-Jun-11 07:28:08 | 331.4K | application/x-redhat-package-manager |
repmgr10-debuginfo-4.0.0-1.f25.x86_64.rpm | 2017-Nov-21 18:20:32 | 426.5K | application/x-redhat-package-manager |
resource-agents-paf-2.1.0-1.f25.noarch.rpm | 2017-Aug-15 21:42:11 | 40.4K | application/x-redhat-package-manager |
resource-agents-paf-2.2.0-1.f25.noarch.rpm | 2017-Sep-13 15:39:23 | 45.0K | application/x-redhat-package-manager |
rum_10-1.1.0-1.f25.x86_64.rpm | 2017-Nov-07 22:30:21 | 95.9K | application/x-redhat-package-manager |
rum_10-debuginfo-1.1.0-1.f25.x86_64.rpm | 2017-Nov-07 22:30:21 | 307.6K | application/x-redhat-package-manager |
rum_10-devel-1.1.0-1.f25.x86_64.rpm | 2017-Nov-07 22:30:21 | 17.1K | application/x-redhat-package-manager |
slony1-10-2.2.6-1.f25.x86_64.rpm | 2017-Oct-03 14:25:31 | 227.3K | application/x-redhat-package-manager |
slony1-10-2.2.6-3.f25.x86_64.rpm | 2017-Oct-15 15:41:28 | 227.2K | application/x-redhat-package-manager |
slony1-10-debuginfo-2.2.6-1.f25.x86_64.rpm | 2017-Oct-03 14:25:31 | 430.7K | application/x-redhat-package-manager |
slony1-10-debuginfo-2.2.6-3.f25.x86_64.rpm | 2017-Oct-15 15:41:28 | 430.8K | application/x-redhat-package-manager |
split_postgres_dump-1.3.3-2.f25.noarch.rpm | 2017-Jan-08 17:48:28 | 8.7K | application/x-redhat-package-manager |
table_version10-1.3.0-1.f25.x86_64.rpm | 2017-Oct-03 14:25:49 | 28.7K | application/x-redhat-package-manager |
table_version10-1.3.1-1.f25.x86_64.rpm | 2017-Oct-14 11:01:42 | 28.0K | application/x-redhat-package-manager |
tail_n_mail-1.27.0-1.f25.noarch.rpm | 2017-May-18 08:49:37 | 35.6K | application/x-redhat-package-manager |
tds_fdw10-1.0.8-1.f25.x86_64.rpm | 2017-Oct-03 14:26:19 | 24.6K | application/x-redhat-package-manager |
tds_fdw10-debuginfo-1.0.8-1.f25.x86_64.rpm | 2017-Oct-03 14:26:20 | 83.4K | application/x-redhat-package-manager |
usda-r18-1.0-2.f25.noarch.rpm | 2017-May-18 08:49:54 | 1.6M | application/x-redhat-package-manager |
wal-e-1.0.2-1.f25.x86_64.rpm | 2017-May-18 08:49:11 | 174.1K | application/x-redhat-package-manager |
So why didn't that grab those rpms?
And here is what happens when you run the command straight.....
[chandler@manjaro-budgie ~]$ echo ${wget_args[@]} -nH -r -np -A '*.rpm' [chandler@manjaro-budgie ~]$ wget -nH -r -np -A '*.rpm' http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/ --2018-04-04 20:49:22-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/ Resolving download.postgresql.org (download.postgresql.org)... 2001:4800:1501:1::246, 2a02:16a8:dc51::55, 2a02:c0:301:0:ffff::27, ... Connecting to download.postgresql.org (download.postgresql.org)|2001:4800:1501:1::246|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 84261 (82K) [text/html] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp’
pub/repos/yum/10/fe 100%[===================>] 82.29K --.-KB/s in 0.06s
2018-04-04 20:49:22 (1.38 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp’ saved [84261/84261]
Loading robots.txt; please ignore errors. --2018-04-04 20:49:22-- http://download.postgresql.org/robots.txt Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 404 Not Found 2018-04-04 20:49:22 ERROR 404: Not Found.
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp since it should be rejected.
--2018-04-04 20:49:22-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/ Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 28445 (28K) [text/html] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp’
pub/repos/yum/10/fe 100%[===================>] 27.78K --.-KB/s in 0.004s
2018-04-04 20:49:22 (7.12 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp’ saved [28445/28445]
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp since it should be rejected.
--2018-04-04 20:49:22-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/ Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 8522 (8.3K) [text/html] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp’
pub/repos/yum/10/fe 100%[===================>] 8.32K --.-KB/s in 0.001s
2018-04-04 20:49:22 (5.48 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp’ saved [8522/8522]
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp since it should be rejected.
--2018-04-04 20:49:22-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/MigrationWizard-1.1-3.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 1574734 (1.5M) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/MigrationWizard-1.1-3.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 1.50M 2.17MB/s in 0.7s
2018-04-04 20:49:23 (2.17 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/MigrationWizard-1.1-3.f25.noarch.rpm’ saved [1574734/1574734]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-5.0.3-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 107674 (105K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-5.0.3-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 105.15K --.-KB/s in 0.02s
2018-04-04 20:49:23 (4.95 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-5.0.3-1.f25.x86_64.rpm’ saved [107674/107674]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-debuginfo-5.0.3-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 136318 (133K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-debuginfo-5.0.3-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 133.12K --.-KB/s in 0.05s
2018-04-04 20:49:23 (2.72 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-debuginfo-5.0.3-1.f25.x86_64.rpm’ saved [136318/136318]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-1.0-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 21194 (21K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-1.0-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 20.70K --.-KB/s in 0.003s
2018-04-04 20:49:23 (6.53 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-1.0-1.f25.x86_64.rpm’ saved [21194/21194]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-1.1-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 25422 (25K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-1.1-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 24.83K --.-KB/s in 0.004s
2018-04-04 20:49:23 (6.50 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-1.1-1.f25.x86_64.rpm’ saved [25422/25422]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-debuginfo-1.0-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 57702 (56K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-debuginfo-1.0-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 56.35K --.-KB/s in 0.01s
2018-04-04 20:49:23 (4.59 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-debuginfo-1.0-1.f25.x86_64.rpm’ saved [57702/57702]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-debuginfo-1.1-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 69506 (68K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-debuginfo-1.1-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 67.88K --.-KB/s in 0.01s
2018-04-04 20:49:23 (5.75 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/amcheck_next10-debuginfo-1.1-1.f25.x86_64.rpm’ saved [69506/69506]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/babel-1.3-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 13942 (14K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/babel-1.3-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 13.62K --.-KB/s in 0.004s
2018-04-04 20:49:23 (3.75 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/babel-1.3-1.f25.noarch.rpm’ saved [13942/13942]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/babel-doc-1.3-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 308450 (301K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/babel-doc-1.3-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 301.22K --.-KB/s in 0.09s
2018-04-04 20:49:23 (3.14 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/babel-doc-1.3-1.f25.noarch.rpm’ saved [308450/308450]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/barman-2.2-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 275418 (269K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/barman-2.2-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 268.96K --.-KB/s in 0.07s
2018-04-04 20:49:23 (3.67 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/barman-2.2-1.f25.noarch.rpm’ saved [275418/275418]
--2018-04-04 20:49:23-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/barman-2.3-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 280426 (274K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/barman-2.3-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 273.85K --.-KB/s in 0.1s
2018-04-04 20:49:24 (2.69 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/barman-2.3-1.f25.noarch.rpm’ saved [280426/280426]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/barman-cli-1.2-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 15226 (15K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/barman-cli-1.2-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 14.87K --.-KB/s in 0.006s
2018-04-04 20:49:24 (2.58 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/barman-cli-1.2-1.f25.noarch.rpm’ saved [15226/15226]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/bgw_replstatus10-1.0.1-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 13818 (13K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/bgw_replstatus10-1.0.1-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 13.49K --.-KB/s in 0.002s
2018-04-04 20:49:24 (7.32 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/bgw_replstatus10-1.0.1-1.f25.x86_64.rpm’ saved [13818/13818]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/bgw_replstatus10-debuginfo-1.0.1-1.f25.x86_64.rpm Connecting to download.postgresql.org (download.postgresql.org)|2001:4800:1501:1::246|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 31146 (30K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/bgw_replstatus10-debuginfo-1.0.1-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 30.42K --.-KB/s in 0.04s
2018-04-04 20:49:24 (743 KB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/bgw_replstatus10-debuginfo-1.0.1-1.f25.x86_64.rpm’ saved [31146/31146]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/boxinfo-1.4.0-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 36638 (36K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/boxinfo-1.4.0-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 35.78K --.-KB/s in 0.005s
2018-04-04 20:49:24 (7.30 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/boxinfo-1.4.0-1.f25.noarch.rpm’ saved [36638/36638]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/bucardo-5.4.1-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 263774 (258K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/bucardo-5.4.1-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 257.59K --.-KB/s in 0.1s
2018-04-04 20:49:24 (2.21 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/bucardo-5.4.1-1.f25.noarch.rpm’ saved [263774/263774]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/check_postgres-2.22.0-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 154942 (151K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/check_postgres-2.22.0-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 151.31K --.-KB/s in 0.06s
2018-04-04 20:49:24 (2.41 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/check_postgres-2.22.0-1.f25.noarch.rpm’ saved [154942/154942]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/check_postgres-2.23.0-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 163330 (160K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/check_postgres-2.23.0-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 159.50K --.-KB/s in 0.07s
2018-04-04 20:49:24 (2.24 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/check_postgres-2.23.0-1.f25.noarch.rpm’ saved [163330/163330]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-7.0.3-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 316826 (309K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-7.0.3-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 309.40K --.-KB/s in 0.1s
2018-04-04 20:49:24 (2.43 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-7.0.3-1.f25.x86_64.rpm’ saved [316826/316826]
--2018-04-04 20:49:24-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-7.1.0-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 327854 (320K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-7.1.0-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 320.17K --.-KB/s in 0.1s
2018-04-04 20:49:25 (2.47 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-7.1.0-1.f25.x86_64.rpm’ saved [327854/327854]
--2018-04-04 20:49:25-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-debuginfo-7.0.3-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 1303558 (1.2M) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-debuginfo-7.0.3-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 1.24M 2.90MB/s in 0.4s
2018-04-04 20:49:25 (2.90 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-debuginfo-7.0.3-1.f25.x86_64.rpm’ saved [1303558/1303558]
--2018-04-04 20:49:25-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-debuginfo-7.1.0-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 1352462 (1.3M) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-debuginfo-7.1.0-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 1.29M 3.96MB/s in 0.3s
2018-04-04 20:49:25 (3.96 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-debuginfo-7.1.0-1.f25.x86_64.rpm’ saved [1352462/1352462]
--2018-04-04 20:49:25-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-devel-7.0.3-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 52270 (51K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-devel-7.0.3-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 51.04K --.-KB/s in 0.008s
2018-04-04 20:49:25 (6.40 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-devel-7.0.3-1.f25.x86_64.rpm’ saved [52270/52270]
--2018-04-04 20:49:25-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-devel-7.1.0-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 54198 (53K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-devel-7.1.0-1.f25.x86_64.rpm’
pub/repos/yum/10/fe 100%[===================>] 52.93K --.-KB/s in 0.01s
2018-04-04 20:49:25 (4.39 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/citus_10-devel-7.1.0-1.f25.x86_64.rpm’ saved [54198/54198]
--2018-04-04 20:49:25-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/cyanaudit10-1.0.2-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 33270 (32K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/cyanaudit10-1.0.2-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 32.49K --.-KB/s in 0.005s
2018-04-04 20:49:26 (5.78 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/cyanaudit10-1.0.2-1.f25.noarch.rpm’ saved [33270/33270]
--2018-04-04 20:49:26-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/dbi-link-2.0.0-3.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 629454 (615K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/dbi-link-2.0.0-3.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 614.70K 3.92MB/s in 0.2s
2018-04-04 20:49:26 (3.92 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/dbi-link-2.0.0-3.f25.noarch.rpm’ saved [629454/629454]
--2018-04-04 20:49:26-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/django-htmlmin-0.10.0-1.f25.noarch.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 27786 (27K) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/django-htmlmin-0.10.0-1.f25.noarch.rpm’
pub/repos/yum/10/fe 100%[===================>] 27.13K --.-KB/s in 0.004s
2018-04-04 20:49:26 (7.16 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/django-htmlmin-0.10.0-1.f25.noarch.rpm’ saved [27786/27786]
--2018-04-04 20:49:26-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/emaj-2.0.1-1.f25.x86_64.rpm Reusing existing connection to [download.postgresql.org]:80. HTTP request sent, awaiting response... 200 OK Length: 1988110 (1.9M) [application/x-redhat-package-manager] Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/emaj-2.0.1-1.f25.x86_64.rpm’
pub/repos/ 43%[=======> ] 839.57K 4.09MB/s
pi@pi:~/quotes $ set --help | egrep "^\s*-x"
-x Print commands and their arguments as they are executed.
pi@pi:~/quotes $ set -x
pi@pi:~/quotes $ args="-nH -r -np -A '*.rpm'"
+ args='-nH -r -np -A '\''*.rpm'\'''
pi@pi:~/quotes $ wget_args=( ${args} )
+ wget_args=(${args})
pi@pi:~/quotes $ echo ${wget_args[@]}
+ echo -nH -r -np -A ''\''*.rpm'\'''
-nH -r -np -A '*.rpm'
pi@pi:~/quotes $ args="-nH -r -np -A "*.rpm""
+ args='-nH -r -np -A *.rpm'
pi@pi:~/quotes $ wget_args=( ${args} )
+ wget_args=(${args})
pi@pi:~/quotes $ echo ${wget_args[@]}
+ echo -nH -r -np -A '*.rpm'
-nH -r -np -A *.rpm
pi@pi:~/quotes $ set +x
+ set +x
pi@pi:~/quotes $ wget ${wget_args[@]} http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/
--2018-04-04 21:29:17-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/
Resolving download.postgresql.org (download.postgresql.org)... 87.238.57.227, 217.196.149.55, 174.143.35.246, ...
Connecting to download.postgresql.org (download.postgresql.org)|87.238.57.227|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 84261 (82K) [text/html]
Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp’
pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp 100%[================================================================================================================================>] 82.29K 222KB/s in 0.4s
2018-04-04 21:29:18 (222 KB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp’ saved [84261/84261]
Loading robots.txt; please ignore errors.
--2018-04-04 21:29:18-- http://download.postgresql.org/robots.txt
Reusing existing connection to download.postgresql.org:80.
HTTP request sent, awaiting response... 404 Not Found
2018-04-04 21:29:19 ERROR 404: Not Found.
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/index.html.tmp since it should be rejected.
--2018-04-04 21:29:19-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/
Reusing existing connection to download.postgresql.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 28445 (28K) [text/html]
Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp’
pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.htm 100%[================================================================================================================================>] 27.78K --.-KB/s in 0.001s
2018-04-04 21:29:19 (18.6 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp’ saved [28445/28445]
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/drpms/index.html.tmp since it should be rejected.
--2018-04-04 21:29:19-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/
Reusing existing connection to download.postgresql.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 8522 (8.3K) [text/html]
Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp’
pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index. 100%[================================================================================================================================>] 8.32K --.-KB/s in 0s
2018-04-04 21:29:19 (19.3 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp’ saved [8522/8522]
Removing pub/repos/yum/10/fedora/fedora-25-x86_64/repodata/index.html.tmp since it should be rejected.
--2018-04-04 21:29:19-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/MigrationWizard-1.1-3.f25.noarch.rpm
Reusing existing connection to download.postgresql.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 1574734 (1.5M) [application/x-redhat-package-manager]
Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/MigrationWizard-1.1-3.f25.noarch.rpm’
pub/repos/yum/10/fedora/fedora-25-x86_64/MigrationWizard 100%[================================================================================================================================>] 1.50M 1.88MB/s in 0.8s
2018-04-04 21:29:20 (1.88 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/MigrationWizard-1.1-3.f25.noarch.rpm’ saved [1574734/1574734]
--2018-04-04 21:29:20-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-5.0.3-1.f25.x86_64.rpm
Reusing existing connection to download.postgresql.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 107674 (105K) [application/x-redhat-package-manager]
Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-5.0.3-1.f25.x86_64.rpm’
pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-5.0.3- 100%[================================================================================================================================>] 105.15K --.-KB/s in 0.03s
2018-04-04 21:29:20 (3.95 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-5.0.3-1.f25.x86_64.rpm’ saved [107674/107674]
--2018-04-04 21:29:20-- http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-debuginfo-5.0.3-1.f25.x86_64.rpm
Reusing existing connection to download.postgresql.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 136318 (133K) [application/x-redhat-package-manager]
Saving to: ‘pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-debuginfo-5.0.3-1.f25.x86_64.rpm’
pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-debugi 100%[================================================================================================================================>] 133.12K --.-KB/s in 0.02s
2018-04-04 21:29:20 (5.80 MB/s) - ‘pub/repos/yum/10/fedora/fedora-25-x86_64/PyGreSQL-debuginfo-5.0.3-1.f25.x86_64.rpm’ saved [136318/136318]
^C
pi@pi:~/quotes $ tree
.
└── pub
└── repos
└── yum
└── 10
└── fedora
└── fedora-25-x86_64
├── drpms
├── MigrationWizard-1.1-3.f25.noarch.rpm
├── PyGreSQL-5.0.3-1.f25.x86_64.rpm
├── PyGreSQL-debuginfo-5.0.3-1.f25.x86_64.rpm
└── repodata
pi@pi:~/quotes $ fgrep "single quotes" <(man bash)
There are three quoting mechanisms: the escape character, single quotes, and double quotes.
Enclosing characters in single quotes preserves the literal value of each character within the quotes. A single quote may not occur between single quotes, even when preceded by a backslash.
quotes are considered one word. History expansions are introduced by the appearance of the history expansion character, which is ! by default. Only backslash (\) and single quotes can quote the history expansion
If set, bash, when in posix mode, treats a single quote in a double-quoted parameter expansion as a special character. The single quotes must match (an even number) and the characters between the
single quotes are considered quoted. This is the behavior of posix mode through version 4.1. The default bash behavior remains as in previous versions.
The only difference between what I had tried and what you just did was you escaped the single quotes. Thanks. I will try that out :)
Here is the problem with your method that I had encountered earlier.... if you touch a file that matches the -A option that will be filled in with what you had done...
Example: I touched test.rpm in the main bashellite directory. Here is the results doing it like you...
[chandler@manjaro-budgie bashellite]$ set -x ++ echo -ne '\033]0;chandler@manjaro-budgie:~/Projects/bashellite\007' [chandler@manjaro-budgie bashellite]$ args="-nH -r -np -A "*.rpm""
That example isn't so much a problem. But if we are trying to get '*.sh', then that gets expanded to 'bashellite.sh' which will of course fail to get any files that are .sh files :(
wget_args="-nH -np -r *.rpm"; wget ${wget_args//\*/\\*} http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/
You see the same problem with "$" stored as part of variable values. Bash tries to eat them when you call them later. For "*" in particular, you can also use set -f
to turn off globbing temporarily, so long as you remember to turn it back on with set +f
.
I have tried setting set -f in the script, and it still doesn't work :( But I will try again.
wget_args="-nH -np -r -A "*.rpm""; set -f; wget ${wget_args} http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/; set +f
^ Confirmed that this works just now. It won't work without the double-quotes around "*.rpm" though.
I will try that in the script.
I finally figured out what was wrong.... Try this ;) IFS=$'\n'; wget_args="-nH -np -r -A "*.rpm""; set -f; wget ${wget_args} http://download.postgresql.org/pub/repos/yum/10/fedora/fedora-25-x86_64/; set +f; unset IFS
It turns out that when we set $IFS for the for loop to read each line in the repo_filter.conf file so that it will read to the end of the line instead of to the first whitespace encountered, that messes up wget parsing it's own arguments. So I will rewrite the original for loop to read the contents of repo_filter.conf into an array so that $IFS can be reset before getting to wget.
You won :P Merge away.
The args aggregation is starting to get a little convoluted with the addition all the new conditional arguments. I'll attempt to clean it up later. Also, just FYSA, here is a more streamline way to do your array population:
root@dt:/home/codz# > test.txt
root@dt:/home/codz# for i in {0..10}; do echo "$i $i" >> test.txt; done
root@dt:/home/codz# cat test.txt
0 0
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
root@dt:/home/codz# while IFS='\n' read -r line; do array+=( "${line}" ); done < test.txt
root@dt:/home/codz# echo ${array[1]}
1 1
$IFS resets automagically upon read
exit.
This should add the postgresql repo for yum based distros.