Executing commands in C

Поділитися
Вставка
  • Опубліковано 21 жов 2024

КОМЕНТАРІ • 64

  • @arnaud_b42
    @arnaud_b42 3 роки тому +52

    You just explained everything i needed to know to do my project at school-42 thanks a lot 😁

    • @nom9d825
      @nom9d825 3 роки тому +1

      same))))

    • @pierinacamarena2507
      @pierinacamarena2507 3 роки тому +2

      hehe here for it as well

    • @nom9d825
      @nom9d825 3 роки тому +1

      @@pierinacamarena2507 pipex or mini talk?😂

    • @pierinacamarena2507
      @pierinacamarena2507 3 роки тому +4

      Pipeex

    • @nom9d825
      @nom9d825 3 роки тому +5

      @@pierinacamarena2507 nice. Little advice. Do it with bonus part from start)) you will use it in minishell.

  • @angelomarzocchi4202
    @angelomarzocchi4202 2 роки тому +4

    this man tells the kernel what to do 💀 thanks for these videos, you're helping a lot!

  • @murilo_dev
    @murilo_dev 7 місяців тому

    Thank you for the work! You give so much for the community! Thank you!

  • @JJ-uu5jg
    @JJ-uu5jg 2 роки тому +4

    great playlist of videos! for some reason it doesn't have an order in UA-cam, can you please list the reasonable order in which one should watch the videos? Thanks a lot!

    • @CodeVault
      @CodeVault  2 роки тому +1

      Some videos on the channel don't have an order in which they should be watched although this one does and it's in the Unix Processes playlist:
      code-vault.net/course/46qpfr4tkz:1603732431896
      or on UA-cam:
      ua-cam.com/play/PLfqABt5AS4FkW5mOn2Tn9ZZLLDwA3kZUY.html

  • @a6071-b3y
    @a6071-b3y 3 місяці тому

    i'm really enjoying this videos! thx man

  • @lyricsmaker-poplyricsmaker1183
    @lyricsmaker-poplyricsmaker1183 4 роки тому +1

    Really good videooo exactly want we wantedd thankssssss

  • @ShivamSharma-nb6gh
    @ShivamSharma-nb6gh 3 роки тому

    Family of exec function is not working in visual studio on Windows connected to WSL UBUNTU Linux . Fork() is working fine but exec family is not working neither it is showing any error it's just ignored in program 😦
    Please help is, there anything with directory @CodeVault

  • @bama2619
    @bama2619 3 роки тому +2

    well done. Could you give a link at the end of your video to the next video, please? And when you mention some previous lessons, please, also make a link. It is easier to navigate than just keep watching videos in a random order. Thank you.

    • @CodeVault
      @CodeVault  3 роки тому +3

      There's a playlist available on our site: code-vault.net/course/46qpfr4tkz:1603732431896/lesson/as15alvu0a:1603732432433

    • @bama2619
      @bama2619 3 роки тому

      @@CodeVault I did not know you have this web-site. Now the order is clear. Thank you.

    • @CodeVault
      @CodeVault  3 роки тому +1

      There are playlists on UA-cam as well!

  • @enesb4797
    @enesb4797 3 роки тому +2

    I can't ping, I wrote the code you wrote execl().. but nothing happens when I execute my program. It says ping: socket: operation not permitted.

    • @CodeVault
      @CodeVault  2 роки тому +1

      Ah right.... I got this issue as well. My quick solution was to just run the process as root

  • @hectordoyle4718
    @hectordoyle4718 4 роки тому +2

    curiosity: would it work if i used exec() and pass "&" as an argument to skip forking?

    • @ronjeremy1232
      @ronjeremy1232 4 роки тому

      Pass & as an argument to what?

    • @CodeVault
      @CodeVault  4 роки тому +2

      Remember: The exec arguments you pass in are actually the argv for the program you're launching.
      So, even trying to pass "&" like so:
      execlp("ping", "ping", "-c", "3", "google.com", "&", NULL);
      Wouldn't work because it would be passed to the ping program and ping wouldn't know what to do with it, thus giving an error.
      "ping google.com &" in a terminal is a bash script that does more than just executing one program. Bash knows that '&' isn't supposed to be sent to ping and treats it in a special way so it executes the program without passing that '&' and then moves that program to the background.

  • @ayoubben109
    @ayoubben109 3 роки тому +1

    Grande, muy bien explicado!

  • @mohammedshopan2226
    @mohammedshopan2226 2 роки тому

    Now I understand why node js use exec function in child process module . That is aswom

  • @carolineturingds
    @carolineturingds 3 роки тому

    Very useful and explicative!

  • @СтаниславУгольников-й4щ

    how we can execute a process in background, like using "&" in terminal?

    • @CodeVault
      @CodeVault  4 роки тому +1

      There's this video on the topic, hope it helps: ua-cam.com/video/7ud2iqu9szk/v-deo.html

  • @pulgamecanica
    @pulgamecanica 2 роки тому

    I love your videos keep it up! Although I would love them more if you used Linux hahahahahah Cheers!

    • @CodeVault
      @CodeVault  2 роки тому +2

      The VSCode instance is actually a remote connection to a Linux machine
      I do use Linux as my desktop dev environment although I am not confident on the recording aspect... it has some weird quirks. I might give it a try at some point

    • @pulgamecanica
      @pulgamecanica 2 роки тому

      @@CodeVault You're right and I always love how your videos are portable hahah many people don't take the time to explain which library you should use for different OS.

  • @mahdesouqi8603
    @mahdesouqi8603 3 роки тому

    thx fot this video ,
    Q: how can i execute a process in the background ?

    • @CodeVault
      @CodeVault  3 роки тому +1

      What do you mean by: "in the background"?

    • @mahdesouqi8603
      @mahdesouqi8603 3 роки тому

      @@CodeVault run the process in the terminal without blocking by put (&) in the end of the command
      Ex: firefox&

  • @edwardmacnab354
    @edwardmacnab354 Рік тому

    can this be done in windows visual studio code or is a linux system a requirement

    • @CodeVault
      @CodeVault  Рік тому +1

      This is basically only for Linux (and Mac). But you can install WSL on Windows and execute the code through that

  • @ujjwalbansal1070
    @ujjwalbansal1070 2 роки тому

    Awesome... well explained.

  • @siyanibillinumberone4054
    @siyanibillinumberone4054 2 роки тому

    Thanks for video

  • @trantor3604
    @trantor3604 3 роки тому

    good asf

  • @naitside3410
    @naitside3410 2 роки тому

    why do you write "ping", "pong", 2 times and it works ?

    • @CodeVault
      @CodeVault  2 роки тому +1

      The first "ping" is the program's name. Everything else is what the argv array will be in that program's main function. By standard you have to pass the name (or the full path) of the executable as the first element in that argv array

  • @ShivamSharma-nb6gh
    @ShivamSharma-nb6gh 3 роки тому

    @codevault I want to execute multiple programs not just one,
    one after another using fork and exec

    • @robheusd
      @robheusd 2 роки тому

      One way to do that is call bash and have it execute a shell script which in turn calls the programs. Or do multiple forks.

  • @haanhtran9351
    @haanhtran9351 3 роки тому

    Thank you!!

  • @demonikidoff4613
    @demonikidoff4613 Рік тому

    thanks bro

  • @alanmenescal9871
    @alanmenescal9871 2 роки тому

    make a video using execve instead of execlp and use it for simulate a pipe from shell, plis u.u

    • @CodeVault
      @CodeVault  2 роки тому

      There's actually already a video on this topic. You can find it here: code-vault.net/lesson/oxyoxbvnak:1603732432935

  • @sidewalkchess
    @sidewalkchess 4 роки тому

    благодарчик!