mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-05-01 12:49:41 +08:00
6 lines
94 B
Bash
6 lines
94 B
Bash
#!/bin/sh
|
|
|
|
tail -n $1 "$2" > /var/run/tailtmp
|
|
cat /var/run/tailtmp > "$2"
|
|
rm /var/run/tailtmp
|