bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

the "-e" command line argument is not recognized


From: Viktor Korsun
Subject: the "-e" command line argument is not recognized
Date: Wed, 16 Feb 2022 18:37:52 +1300

runme.sh
#!/bin/bash
echo $0
echo $1
echo $2
echo $3
echo $4
echo $5
echo $6

command:
./runme.sh -q -w -e -r -t -y

produced output:
./get_env.sh
-q
-w

-r
-t
-y

expected output:
./get_env.sh
-q
-w
-e
-r
-t
-y


Regards,
Viktor Korsun, bitekas@gmail.com


reply via email to

[Prev in Thread] Current Thread [Next in Thread]