I was writing my first script on vi editor
#!/bin/sh
echo hello
echo i am; 'whoami' ----without ';' it give out i am whoami so i put ;
me='whoami'
iam="i am $me"
echo $iam
when i run it
hello
i am
user
i am whoami---- i want this as ' i am user'
can anybody help !!!
thanks