error when stored in a variable in the list of the compiled variables is duplicated

You have extra spaces

Change

lv_mount = ${lv_LST[$n]};
lv_size = ${lv_size_as_bash[$n]};

To

lv_mount=${lv_LST[$n]};
lv_size=${lv_size_as_bash[$n]};

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top