Why Sponsor Oil? | source | all docs for version 0.15.0 | all versions | oilshell.org
Here are some common questions about the Oil language. Many of the answers boil down to the fact that Oil is a smooth upgrade from bash.
Old and new constructs exist side-by-side. New constructs have fewer "gotchas".
myvar
, $myvar
, and "$myvar"
?Oil is more like Python/JavaScript rather than PHP/Perl, so it doesn't use the
$
sigil as much.
Never use $
on the left-hand side:
var mystr = "foo" # not var $mystr
Use $
to substitute vars into commands:
echo $mystr
echo $mystr/subdir # no quotes in commands
or quoted strings:
echo "$mystr/subdir"
var x = "$mystr/subdir"
Rarely use $
on the right-hand side:
var x = mystr # preferred
var x = $mystr # ILLEGAL -- use remove $
var x = ${mystr:-} # occasionally useful
var x = $? # allowed
See Command vs. Expression Mode for more details.
$(dirname $x)
and $len(x)
?Superficially, both of these syntaxes take an argument x
and return a
string. But they are different:
$(dirname $x)
is a shell command substitution that returns a string, and
starts another process.$len(x)
is a function call, and doesn't need to start a process.
len(x)
is an expression that evaluates to an integer, and
$len(x)
converts it to a string.(Note: builtin subs like ${.myproc $x}
are meant to eliminate process
overhead, but they're not yet implemented.)
proc
s?There are two primary ways:
stdout
. Retrieve it with a command sub like
$(myproc)
or a pipeline like myproc | read --line
.(Oil may grow true functions with the func
keyword, but it will be built on
top of proc
and the builtin sub mechanism.)
Send us feedback if this doesn't make sense, or if you want a longer explanation.
${array[r'\']}
?This boils down to the difference between OSH and Oil, and not being able to
mix the two. Though they look similar, ${array[i]}
syntax (with braces) is
fundamentally different than $[array[i]]
syntax (with brackets).
${array[i]}
.
${array[i++]}
or
${assoc["$key"]}
.r'\'
.$[array[i]]
is preferred.
$[array[i + 1]
or $[mydict[key]]
.r'\'
is a valid key, e.g. $[mydict[r'\']]
.Of course, Oil style is preferred when compatibility isn't an issue.
No:
echo ${array[r'\']}
Yes:
echo $[array[r'\']]
A similar issue exists with arithmetic.
Old:
echo $((1 + 2)) # shell arithmetic
New:
echo $[1 + 2] # Oil expression