Posts by user180270 • 1 point
1 post
-
0
votes0
answers24
viewsQ: Shell - Enter or put program into variable
I have the following code: for (( c=1; c<=10; c++ )) do cc stringalea.c -o st aux = ./st $c echo $aux ... done The stringalea. c program returns a pseudo-random word of length "c". How do I enter…