42shpimanmls / 42sh

Shell project at 42
3 stars 0 forks source link

handle command line only containing assignments #180

Closed lsimonne closed 7 years ago

lsimonne commented 7 years ago
[ChezLouise@ ~/Documents/42/42sh]$ echo $toto $tata
  executing builtin echo

  done executing builtin echo, ok
[ChezLouise@ ~/Documents/42/42sh]$ toto=titi tata=tutu && echo $toto $tata
    executing builtin echo
titi tutu
    done executing builtin echo, ok