#!/bin/sh
# Simple shell script to retrieve the
# physical address located in /proc/modpamem

awk '{if ($1=="phy_addr:") print $2;}' /proc/modpamem
