>You are probably using GNU tar, so tar xvf works for all tarballs. And you also don't need to do such a long script:
#!/bin/sh for file in /mnt/lfs/sources/*.tar*; do tar xvf $file done Since this is so simple ... can I do this on a command line? Thanks. -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
