paths - Ubuntu command ./ - Ask Ubuntu
this question has answer here:
- what meaning of ./ before given path? 4 answers
i wondering command ./
example:./ts3client_runscript.sh start
thanks help.
it's not command, it's location in filesystem. .
current working directory, , /
path separator. doing command, specifying file in current working directory. can without ./
except when want execute file, so, in command
./ts3client_runscript.sh start
you telling shell execute file. can execute file not in current working directory specifying path it, example /bin/uname
long file executable, , ./
specifying path in same way.
Comments
Post a Comment