From ebc3490c9aff93f6333e77382a6f8f11b3e3e75b Mon Sep 17 00:00:00 2001 From: azamatamirzhan <52777027+azamatamirzhan@users.noreply.github.com> Date: Sat, 4 Apr 2020 18:02:09 +0600 Subject: [PATCH] fixed bash syntax for ARG --- subjects/push-swap/push-swap.audit.en.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/push-swap/push-swap.audit.en.md b/subjects/push-swap/push-swap.audit.en.md index 0b6634c8..21c1e8d3 100644 --- a/subjects/push-swap/push-swap.audit.en.md +++ b/subjects/push-swap/push-swap.audit.en.md @@ -63,7 +63,7 @@ OK ###### Does it display the right result as above? -##### Try to run `"ARG = "4 67 3 87 23"; ./push_swap $ARG | ./checker $ARG"`. +##### Try to run `"ARG=("4 67 3 87 23"); ./push_swap $ARG | ./checker $ARG"`. ``` OK @@ -73,11 +73,11 @@ OK #### General -##### Try to run `"$ARG= "<100 random numbers>"; ./push_swap $ARG"` with 100 random different numbers instead of the tag. +##### Try to run `"$ARG=("<100 random numbers>"); ./push_swap $ARG"` with 100 random different numbers instead of the tag. ###### +Does it display less than 700 commands? -##### Try to run `"$ARG= "<100 random numbers>; ./push_swap $ARG | ./checker $ARG"` with the same 100 random different numbers as before instead of the tag. +##### Try to run `"$ARG=("<100 random numbers>"); ./push_swap $ARG | ./checker $ARG"` with the same 100 random different numbers as before instead of the tag. ``` OK