Como usar o comando start no bash no Windows

3

Eu quero usar o start command do Windows em bash no Ubuntu no Windows (ou seja, WSL). No entanto, eu não poderia usá-lo simplesmente digitando start :

nek@NEK:/mnt/c/Users/Nek$ start test.txt
Command 'start' is available in '/sbin/start'
The command could not be located because '/sbin' is not included in the PATH environment variable.
This is most likely caused by the lack of administrative privileges associated with your user account.
start: command not found

E notei que start.exe pode não existir.

C:\Users\Nek>where start
INFO: Could not find files for the given pattern(s).

start é um comando interno? Podemos usar start no bash?

Ambiente

  • Windows 10 build 14393.693 ( Atualização : Essa versão é antiga para executar .exe files no bash. Eu deveria atualizar o Windows build > = 14951 e, em seguida, seguir a resposta.)
  • Bash no Ubuntu no Windows (bash 4.3.11 (1) -release x86_64-pc-linux-gnu, Ubuntu 14.04)

Links Relacionados

por nekketsuuu 24.02.2017 / 08:44

1 resposta

4

É iniciar um comando interno?

Sim.

Internal commands

The Windows CMD shell CMD.exe contains a number of 'internal' commands, additional 'external' commands are also supplied as separate executable files. External commands are generally stored in the C:\WINDOWS\System32 folder, this folder is part of the system PATH .

This arrangement means that both internal and external commands are always available no matter what your current directory happens to be.

ASSOC, BREAK, CALL ,CD/CHDIR, CLS, COLOR, COPY, DATE, DEL, DIR, DPATH, ECHO, ENDLOCAL, ERASE, EXIT, FOR, FTYPE, GOTO, IF, KEYS, MD/MKDIR, MKLINK (vista and above), MOVE, PATH, PAUSE, POPD, PROMPT, PUSHD, REM, REN/RENAME, RD/RMDIR, SET, SETLOCAL, SHIFT, START, TIME, TITLE, TYPE, VER, VERIFY, VOL

Fonte sintaxe interna

Podemos usar o começo no bash?

Sim. Inicie um shell de comando e execute o comando start.

Exemplo:

cmd.exe /c start "" test.txt

Se isso não funcionar, especifique o caminho completo da seguinte forma:

/mnt/c/Windows/system32/cmd.exe /c start "" test.txt

Leitura Adicional

por 24.02.2017 / 13:11