Awk

How to expand a cvs module and list all folders.

cvs ls ${modulelist} 2> ${modulelist}.txt
cat ${modulelist}.txt | awk 'BEGIN { FS = ": " } ; { print $2 }'

Syndicate content