Categories: How-To

Exec command on Linux (runs by replacing the shell) [Basic Guide]

The exec command in Linux is used to invoke other commands, programs, or processes without creating a child process, replacing the current process with the one that you want to execute. It’s not something that is used very often.

For example, if you are in the terminal and type the command exec ifconfig, you will get the result of the ifconfig command, but you will no longer have the shell next, because the Bash process will be replaced by ifconfig:

$ exec ifconfig 
en1: flags=8863 mtu 1500
ether c8:bc:c8:dc:c 1:05
inet6 fe80: :cabc:c8ff:fedc:c 105% en1 prefixlen 64 scopeid 0x5
inet 10.0.1.5 netmask 0xffff00 broadcast 10.0.1.255
nd6 options=1

media: autoselect
status: active
[Process completed]

Exec is an “old” legacy program, at the time when creating a child process while executing a program consumed scarce memory and a slow shared CPU. It simply copies the “binary” of the program that executes over the process that is running, avoiding some CPU cycles to create the header and buffers of a child program.

Learn much more about Linux in our online course. You can register here. If you already have an account, or want to create one, just log in or create your user here.

Did you like it?

Share

Uirá Endy Ribeiro

Uirá Endy Ribeiro is a Software Developer and Cloud Computing Architect with a 23-year career. He has master's degrees in computer science and fifteen IT certifications and is the author of 11 books recognized in the IT world market. He is also Director at Universidade Salgado de Oliveira and Director of the Linux Professional Institute - LPI Director's Board.

Uirá Endy Ribeiro

Uirá Endy Ribeiro is a Software Developer and Cloud Computing Architect with a 23-year career. He has master's degrees in computer science and fifteen IT certifications and is the author of 11 books recognized in the IT world market. He is also Director at Universidade Salgado de Oliveira and Director of the Linux Professional Institute - LPI Director's Board.

Share
Published by
Uirá Endy Ribeiro

Recent Posts

Sudo command on Linux (privilege scale) [Basic Guide]

The sudo command on Linux executes a given command as if it were another user.…

2 years ago

SS command on Linux (investigate the network) [Basic Guide]

The ss command on Linux is extremely useful for investigating sockets, providing various information about…

2 years ago

Free Linux command (memory usage) [Basic Guide]

Free Linux command shows the amount of total memory in use and available, as well…

2 years ago

Linux while command (loop – while) [Basic Guide]

The shell has structures for testing conditions and executing certain program sequences several times (loop),…

2 years ago

Linux fstab file (disk mount setup) [Basic Guide]

The /etc/fstab file stores the configuration of which devices should be mounted and what is…

2 years ago

Netcat command on Linux (Swiss network knife) [Basic Guide]

The Netcat Command in Linux or nc is a utility used to do “almost anything”…

2 years ago

This website uses cookies.