python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
issues with for loop syntax in UNIX
I am a new learner and I had a problem with the syntax. I used
n=$1
for (i=0; i<n; i++)
do
sum=$((sum+i))
done
echo $sum;
and it says that theres an error in line 6 . I donot know wha the err...
rohan battu
Votes: 0
Answers: 1
Correct Formatting of Multiple Condition Bash IF Statement
I am trying to use an IF statement to:
Check if a server is UP
Check if a file exists on the server
My Code So Far
hostname="somehost.com"
file="somefile.txt"
URL="https://$...

arnpry
Votes: 0
Answers: 1
Executing execvp() in Child process after fork() still taking over parent process?
I'm executing two bash command ps (which is valid bash command to show processes info) and abc (Invalid bash command) using execvp() inside a child process after creating it with by fork()
The problem...

Mysterious Jack
Votes: 0
Answers: 1
Should I exec() a client child process after accept()ing a new socket FD and fork()ing from the server?
I am creating a server that listens for a connection from any device. After a connection is made and a client socket FD is created, I want to write all data transmitted by the device to a database. I ...
CDog
Votes: 0
Answers: 0