resolve unrecognized image link in SysCall

This commit is contained in:
Dongliang Mu
2024-05-05 15:58:37 +08:00
parent b556a4d4e6
commit 23b3d6d21b
2 changed files with 1 additions and 1 deletions

BIN
SysCall/images/ls_shell.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 KiB

View File

@@ -20,7 +20,7 @@ There are many different ways to launch an application from an user perspective.
In this part we will consider the way when we just launch an application from the shell. As you know, the standard way to launch an application from shell is the following: We just launch a [terminal emulator](https://en.wikipedia.org/wiki/Terminal_emulator) application and just write the name of the program and pass or not arguments to our program, for example:
![ls shell](http://s14.postimg.org/d6jgidc7l/Screenshot_from_2015_09_07_17_31_55.png)
![ls shell](images/ls_shell.png)
Let's consider what does occur when we launch an application from the shell, what does shell do when we write program name, what does Linux kernel do etc. But before we will start to consider these interesting things, I want to warn that this book is about the Linux kernel. That's why we will see Linux kernel insides related stuff mostly in this part. We will not consider in details what does shell do, we will not consider complex cases, for example subshells etc.