shell/sed进阶/输出末尾指定行数的数据.sh

11 lines
86 B
Bash

#!/bin/bash
#输出末尾10行数据
sed '{
:start
$q
N
11,$D
b start
}' /etc/passwd