Hi i have problems with this
echo 'Welcome to my first Script' mkdir myScript cd myScript touch doc1 sales.doc.test2.txt outline.doc echo 'You now have ' ;find . -type f|wc -l;echo 'files in your "myScript" folder' address="205" echo -n "Please enter your favourite number:" read myvar echo "The number you entered is $myvar"
I am trying to conclude: "You now have (3) files in your myScript folder" as one line, but it continues to display them on 3 separate lines. I tried 3 or 4 different codes here (clicking on similar questions above), but they bring me ridiculous errors, and this is just my first script, so I understand all the commands that I use (minus the calculation for files, I had to do it on google).
source share