#!/bin/bash
# 找到包含vendor_id的行打印第3列去重显示

awk '/vendor_id/{print $3}' /proc/cpuinfo | uniq

相关文章: