mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
7 lines
159 B
Bash
Executable File
7 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
# 2>&1 is needed since help output is redirected to stderr.
|
|
elixir -h 2>&1 | head
|
|
elixirc -h 2>&1 | head
|
|
iex -h 2>&1 | head
|
|
elixir --short-version
|