Multiple choice technology operating systems

Which shell does not have history feature?

  1. Bourne shell

  2. Korn shell

  3. C shell

  4. POSIX shell

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The original Bourne shell (sh) does not include command history functionality. History features were introduced in later shells like the C shell (csh) which introduced history commands like '!!' and '!n'. The Korn shell (ksh) and POSIX shell (sh on modern systems) both include history capabilities, typically accessing the same history mechanisms as bash. Bourne shell was designed for simplicity and portability, lacking interactive features that later shells added.