mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00: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
|