Can you list more shell builtins?

078

Sure! Here are some additional common shell builtins:

  1. alias: Create an alias for a command.
  2. bg: Resume a suspended job in the background.
  3. cd: Change the current directory.
  4. echo: Display a line of text.
  5. exit: Exit the shell.
  6. export: Set environment variables.
  7. fg: Bring a background job to the foreground.
  8. history: Show the command history.
  9. jobs: List active jobs.
  10. kill: Terminate a process.
  11. pwd: Print the current working directory.
  12. set: Set shell options and positional parameters.
  13. unset: Remove a variable or function.
  14. test: Evaluate conditional expressions.
  15. type: Display information about command type (builtin, alias, function, etc.).

These builtins are integral to shell operation and provide various functionalities directly within the shell environment.

0 Comments

no data
Be the first to share your comment!