Skip to content

Tag: linux

libuv: difference between fork and uv_spawn?

Recently I have been playing around with Libuv. I don’t get the programming model as far as child processes are concerned. For example look at the following code: Here the output printed on console is: In my understanding uv_spawn acts like fork(). In child process the value of r is 0 and in parent proc…

Ansible Replace the string variable in uri module

I want to download the filebeat7.15.2 binaries form artifactory. I am passing the version in my playbook as 7-15-2, but want to change in the playbook to 7.15.2 in uri module only. My binary is stored in example.com/artifactory/mvn-public-local/com/dbdb/rf/devops/filebeat/7-15-2/filebeat-7.15.2-linux-x86_64.t…

scanf does not work in batch mode programming

I am facing issue in my code it works perfectly fine when I try to execute in linux terminal in interactive mode shown here enter image description here but when trying to do in batch mode I am getting an unexpected behaviour from program I do not know exactly is it the address like enter image description he…