Hi Bytes..
I have command like this..
echo "km=cat /proc/meminfo | grep MemFree | awk '{ print $2 }' "
i want to redirect this output to a file or output prompt i got printed
km=cat /proc/meminfo | grep MemFree | awk '{ print }'
actually i want to print the full command in file .
like this below ,
echo "km=cat /proc/meminfo | grep MemFree | awk '{ print $2 }' "
what i have to do tel me some suggestion .
|