From 6ece65cd55782ee84d7d58fbf6460157aafd8307 Mon Sep 17 00:00:00 2001 From: Alexander BC Date: Sat, 9 Nov 2024 21:45:10 +0100 Subject: [PATCH] fix: commit dns_list_record_help function --- porkbun-linux-cli | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/porkbun-linux-cli b/porkbun-linux-cli index 26dfcf7..6e355ab 100755 --- a/porkbun-linux-cli +++ b/porkbun-linux-cli @@ -883,6 +883,16 @@ function dns_list_record { echo $(request "$URL" "$PAYLOAD") } +function dns_list_record_help { + echo "Usage: $0 $HANDLE_DNS $HANDLE_DNS_LIST $DNS_LIST_RECORD [OPTIONS]" + echo + echo "Options:" + echo " $PARAM_DOMAIN_SHORT, $PARAM_DOMAIN" + echo " The domain to list records from." + echo " $PARAM_ID_SHORT, $PARAM_ID (optional)" + echo " The ID of the record." +} + # endregion ###################################################