1 Apr
2009
1 Apr
'09
1:58 p.m.
Just to get the ball rolling. #!/bin/sh # Proof of Concept # ToDo: # Work out best place to add into the aif code # Sanity Checks? var="coreutils vi vsftpd kernel26 kernel26-firmware gcc gcc-libs file vi pam man-pages jfsutils perl iptables" remove="vi man-pages jfsutils iptables" result=$var for each_name in $remove; do result=$(echo ${result//$each_name/}) done echo $var echo $remove echo $result