All Questions
2 questions
1vote
2answers
809views
How to pass a parameter in a command without run the parameter content?
Good days. I have a little problem. I have this function in bash script function denyCheck(){ file=$(readlink -f $(which $(printf "%s\n" "$1"))) if [[ -x $file ]];then ...
-1votes
1answer
191views
CPU statistics calculation algorithm
I too many search on internet to found algorithm calculated %Us , %Sy , %Id , ... on result of top command . but can not found any documentation . some documents like this or this calculate cpu ...