Here are some common shell builtin examples:
cd- Change the current directory.echo- Display a line of text or a variable value.exit- Exit the shell or terminate a script.set- Set or unset shell options and positional parameters.unset- Remove variable or function names.alias- Create an alias for a command.export- Set environment variables for child processes.history- Display the command history.pwd- Print the current working directory.fg- Bring a background job to the foreground.
These builtins are integral to shell operation and provide essential functionality without needing external programs.
