Here are some common built-in commands in Linux:
cd: Change the current directory.echo: Display a line of text or a variable value.exit: Exit the shell or terminate a script.pwd: Print the current working directory.history: Display the command history.alias: Create an alias for a command.unset: Remove a variable or function.export: Set environment variables.set: Set shell options and positional parameters.fg: Bring a background job to the foreground.
These commands are executed directly by the shell and do not require external programs.
