From 1ba6756a834af7e32b358df6f131374cc340e493 Mon Sep 17 00:00:00 2001 From: Richard Elkins Date: Fri, 14 Jun 2024 08:41:39 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 58cb2ad..d1e781c 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,13 @@ go install ./... ``` cd ppolls2024 -ppolls2024 -f # Download the latest poll data. +ppolls2024 -h # Get help. +ppolls2024 -f # Download the latest poll data. If there are no changes to the downloaded poll data, this is displayed. ppolls2024 -l # Load the database with the downloaded data. ppolls2024 -r tx # Get detailed report for Texas. The string "TX" is also acceptable. ppolls2024 -r ec # Get summary report for all states. The string "EC" is also acceptable. -ppolls2024 -p # Get plots. +# Upshifting of the -r parameter value is performed automatically. +ppolls2024 -p # Get plots for all states. ``` #### Licensing From ff46bbf44ada967e8ce4be1a9500258b4d74b478 Mon Sep 17 00:00:00 2001 From: Richard Elkins Date: Fri, 14 Jun 2024 08:49:21 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d1e781c..c43eec4 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,13 @@ go install ./... ``` cd ppolls2024 ppolls2024 -h # Get help. -ppolls2024 -f # Download the latest poll data. If there are no changes to the downloaded poll data, this is displayed. +ppolls2024 -f # Fetch the latest poll data. + # The first time poll data is fetched, the following is displayed: + # No previous poll data. + # If the Internet poll data has changed compared to the local copy, the following is displayed: + # Internet poll data has changed. + # If there are no changes to the local poll data, the following is displayed: + # Internet poll data has not changed. Nothing to do. ppolls2024 -l # Load the database with the downloaded data. ppolls2024 -r tx # Get detailed report for Texas. The string "TX" is also acceptable. ppolls2024 -r ec # Get summary report for all states. The string "EC" is also acceptable. From debc036355ec8c39a85b3ffcb7097a751241b085 Mon Sep 17 00:00:00 2001 From: Richard Elkins Date: Fri, 14 Jun 2024 08:53:49 -0500 Subject: [PATCH 3/3] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c43eec4..ba4bee2 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ cd ppolls2024 ppolls2024 -h # Get help. ppolls2024 -f # Fetch the latest poll data. # The first time poll data is fetched, the following is displayed: - # No previous poll data. + # Fetch: No previous poll data. # If the Internet poll data has changed compared to the local copy, the following is displayed: - # Internet poll data has changed. + # Fetch: Internet poll data has changed. # If there are no changes to the local poll data, the following is displayed: - # Internet poll data has not changed. Nothing to do. + # Fetch: Internet poll data has not changed. Nothing to do. ppolls2024 -l # Load the database with the downloaded data. ppolls2024 -r tx # Get detailed report for Texas. The string "TX" is also acceptable. ppolls2024 -r ec # Get summary report for all states. The string "EC" is also acceptable.