mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-29 18:01:55 +08:00
4 lines
92 B
Bash
Executable File
4 lines
92 B
Bash
Executable File
#!/bin/sh
|
|
tail -n $1 "$2" > /var/run/tailtmp
|
|
cat /var/run/tailtmp > "$2"
|
|
rm /var/run/tailtmp |