1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages/common/bash.md
2016-02-22 20:14:41 -05:00

243 B

bash

Bourne-Again SHell. sh-compatible command line interpreter.

  • Start interactive shell:

bash

  • Execute a command:

bash -c {{command}}

  • Run commands from a file:

bash {{file.sh}}

  • Run commands from STDIN:

bash -s