I am defining a variable on Debian 10 command line but getting the error.
Do anyone know how can I do that?
Thank you,
I am defining a variable on Debian 10 command line but getting the error.
Do anyone know how can I do that?
Thank you,
Shells are weird in that you're not allowed to have whitespace around the =
.
count=10
should work. (Otherwise, the shell thinks you're trying to call a program named count
with parameters =
and 10
.)
(PS: copy-pasting the line and error message is more useful than posting a screenshot. Our colleagues that use screen readers due to visual impairment, for example, had no chance to help you with your question because they can't tell what you did and what the error was.)