Understanding Different Classifications of Shell Commands and Their Usage in Linux


Aaron Kili


Suggested Read: 5 Interesting Command Line Tips and Tricks in Linux – Part 1 One important thing to note is that the command line interface is different from the shell, it only provides a means for you to access the shell. Program Executables (File System Commands) When you run a command, Linux searches through the directories stored in the $PATH environmental variable from left to right for the executable of that specific command. Linux Aliases These are user defined commands, they are created using the alias shell built-in command, and contain other shell commands with some options and arguments. Suggested Read: 5 Shell Scripts for Linux Newbies to Learn Shell Programming Save the file and thereafter, make the script executable. You can list or check Linux built-in commands using type command as shown: $ type pwd pwd is a shell builtin $ type cd cd is a shell builtin $ type bg bg is a shell builtin $ type alias alias is a shell builtin $ type history history is a shell builtin Learn about some Linux built-in Commands usage: Conclusion As a Linux user, it is always important to know the type of command you are running.


Visit Link


Tags: