python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Can use more than one command in Parallel?
parallel --tag -k -j 100 sshpass -p test1!' ssh -oCheckHostIP=no -oStrictHostKeyChecking=no root@10.0.{} "awk '{print\ \$1\}' /proc/loadavg" ::: {41..46}.{1..100}
The script I used is the s...
morris__
Votes: 0
Answers: 0
syntax error near unexpected token `(' with "let" command in bash script
I have a bash script as following that generates the accompanying error:
# cat ./a.sh
#!/bin/bash
let C=1+(2)
echo $C
#
# ./a.sh
./a.sh: line 2: syntax error near unexpected token `('
./a.sh: line 2: ...
Chuck Newman
Votes: 0
Answers: 1
Get value of variable that contains a variable
I have a variable $path with a value of "/home".
The variable $path is stored in a text file like this:
$path/programs
In my script, I am getting the line from the text file and setting it ...

Moses Davidowitz
Votes: 0
Answers: 1
I compiled a assembly code on kali linux but i cant run it
I tried to run some code in Kali Linux in my kernel and it compiled but I cant run it. I followed some guys on YouTube and when I type ld hello.o -o hello it says that there is no Ld command!!
code is...
luksapop
Votes: 0
Answers: 2