echo -e -n "Enter the search string: "; read string1; echo " $string1 was found $count times in our database";
Output:
Enter the search string: xyz
xyz was found 10 times in our database
但我需要输出如下
Enter the search string: xyz xyz was found 10 times in our database
如何获得这种方式?