You could remove some columns with awk I guess. ls -l | awk '{print $1, $3, $9}' Would give permissions, owner and file name for example. Jan