Package:Dash

From Funtoo
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Dash

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Dash is an acronym for debian almquist shell. Dash is a direct descendant of BSD's ash.

Install

root # emerge app-shells/dash

Configuration

Login shell

To use dash as your login shell, you must whitelist dash for pam.

root # echo "/bin/dash" >> /etc/shells

User Shell

To add a user using dash as its default shell:

root # useradd -s /bin/dash username

To make your current users shell dash:

root # chsh -s /bin/dash