You are calling cd with two arguments, Prog and 16.1. You need to call it with just one argument, Prog 16.1. To do this, you need to "quote" the space in the middle, so that it doesn't get interpreted as separating two arguments. Here are a few options:
cd 'Prog 16.1'
cd Prog' '16.1
cd "Prog 16.1"
cd Prog" "16.1
cd Prog\ 16.1
0
tvCa
On
The command replies with an accurate message, all one needs to do is read the error message.
You are calling
cd
with two arguments,Prog
and16.1
. You need to call it with just one argument,Prog 16.1
. To do this, you need to "quote" the space in the middle, so that it doesn't get interpreted as separating two arguments. Here are a few options: