| #!/bin/bashrm -f lfs-network-scripts*.tar.bz2# Get base file name and move bootscripts directory to that nameversion=`grep "ENTITY lfs-network-scripts-version" packages.ent |cut -d'"' -f2`mv network-scripts lfs-network-scripts-$version# Create the tarball and clean uptar -cjf lfs-network-scripts-$version.tar.bz2 --exclude .svn lfs-network-scripts-$versionmv lfs-network-scripts-$version network-scripts
 |