This is my shell script,which needs to execute any type of command same as terminal,
#!/bin/sh
while
echo "Reading ..."
read option
echo "Its MS : $option"
do
$option
done
But is not accepting the command which has space in their arguments. like mkdir new\ folder .
So someone help how to arguments with space..