#!/bin/bash
使用数组统计数量后排序
awk -F "/" '{s[$3]++}END{for(key in s) print s[key]" "key}' | sort -r