Here are some common examples of shell builtins:
- cd - Changes the current directory.
- echo - Displays a line of text or variable values.
- export - Sets environment variables.
- alias - Creates shortcuts for commands.
- unset - Removes variables or functions.
- set - Sets shell options or positional parameters.
- pwd - Prints the current working directory.
- history - Displays the command history.
- jobs - Lists active jobs in the current shell session.
- fg - Brings a background job to the foreground.
These commands are executed directly by the shell and do not require an external program to run.
