Tag: LFS

Linux下检查开发工具版本的脚本

Posted by – 2009-02-20

#!/bin/bash export LC_ALL=C # Simple script to list version numbers of critical development tools # 引在LFS官方文档,在此表示感谢 bash –version | head -n1 | cut -d” ” -f2-4 echo “/bin/sh -> `readlink -f /bin/sh`” echo -n “Binutils: ” … More