On Linux when I want to execute some file and use relative path.
For example I want to do something like this:
cd c:\windows
c:\windows>./System32/ipconfig.exe
However what I get is an error message telling me that "." has not been found.
On Linux when I want to execute some file and use relative path.
For example I want to do something like this:
cd c:\windows
c:\windows>./System32/ipconfig.exe
However what I get is an error message telling me that "." has not been found.
A period denotes the current directory in Windows.
For your example you would use the following:
Alternately, you could forego the .\ and do it like this:
Use the correct slash marks and you should be good. Windows uses backslashes as the directory symbol instead of the forward slash. The only caveat to this is if you have to change drive letters. The
cd
command will change the working directory, but not the drive. To change drives use[drive letter][colon]
: