Hi,

I'm wondering if there is a widely accepted coding style of bash scripts.

lug.fh-swf.de/vim/vim-bash/StyleGuideShell.en.pdf

I've seen the following style. Which is one is more widely accepted?

if [ -f $file]; then
   do something
fi

if [ -f $file];
then
   do something
fi

-- 
Regards,
Peng

Reply via email to