JustBash.AST.Redirection (JustBash v0.3.0)

View Source

I/O redirection

Summary

Types

operator()

@type operator() ::
  :<
  | :>
  | :">>"
  | :">&"
  | :"<&"
  | :<>
  | :">|"
  | :"&>"
  | :"&>>"
  | :<<<
  | :"<<"
  | :"<<-"

t()

@type t() :: %JustBash.AST.Redirection{
  fd: non_neg_integer() | nil,
  operator: operator(),
  target: JustBash.AST.Word.t() | JustBash.AST.HereDoc.t()
}