Sunday, 17 June 2012

Write a shell script, which scans the name of the command and executes it.


echo enter command name ;
read a ;
echo enter value to be executed ;
read b ;
$a $b ;

No comments:

Post a Comment