Linux—Command completion does not work when try to execute current directory file directly ( no extension file )
Linux suprised me today ( as good meaning ).
Create executable file.
touch example.sh
Next input filename and try to execute it.
./exa
But command completion does not work … why?
Because this file no executable permission.
chmod +x example.sh
You can use command completion now after chmod.
./example.sh
OK!
- Docker version 18.03.1-ce, build 9ee9f40
$ docker run --interactive --tty ubuntu /bin/bash