Skip to content

Commit 5972ab3

Browse files
committed
prefix_list script update
replace IFS in help message with printf Signed-off-by: Mukul Chodhary <[email protected]>
1 parent 400620b commit 5972ab3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dockers/docker-fpm-frr/base_image_files/prefix_list

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ display_help() {
1515
echo " No additional parameters required."
1616
echo ""
1717
echo "Arguments:"
18-
echo " <PREFIX_TYPE> Type of prefix list. Allowed values: {$(IFS='|'; echo "${supported_prefix_types[*]}")}."
18+
echo " <PREFIX_TYPE> Type of prefix list. Allowed values: {$(printf "%s" "${supported_prefix_types[*]}" | tr ' ' '|')}."
1919
echo " <NETWORK> Network in CIDR format."
2020
echo ""
2121
echo "Options:"

0 commit comments

Comments
 (0)