mirror of
https://github.com/kenzok8/small-package
synced 2025-09-20 19:11:30 +08:00
6 lines
94 B
Bash
Executable File
6 lines
94 B
Bash
Executable File
#!/bin/sh
|
|
|
|
tail -n $1 "$2" > /var/run/tailtmp
|
|
cat /var/run/tailtmp > "$2"
|
|
rm /var/run/tailtmp
|