Here are some additional examples of built-in and external commands in Linux:
Built-in Commands
echo- Displays a line of text or a variable value.exit- Exits the shell or a script.history- Displays the command history.alias- Creates an alias for a command.export- Sets environment variables.
External Commands
grep- Searches for patterns in files.find- Searches for files and directories in a directory hierarchy.cp- Copies files and directories.mv- Moves or renames files and directories.rm- Removes files or directories.
These examples illustrate the distinction between commands that are built into the shell and those that are separate executable files.
