Skip to main content

Questions tagged [yash]

Questions about the yash shell

15 votes
2 answers
2k views

The yash shell has a printf built-in, according to its manual. However, this is what I see in a yash shell with default configuration: $ command -v printf /usr/bin/printf $ type printf printf: a ...
Kusalananda's user avatar
  • 357k
16 votes
9 answers
7k views

In Bourne like shell which support array variable, we can use some parsing to check if variable is an array. All commands below were run after running a=(1 2 3). zsh: $ declare -p a typeset -a a a=(...
cuonglm's user avatar
  • 158k