mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-13 03:59:25 +00:00
fd7a75af5c
Pick changes from latest release.
7 lines
224 B
Bash
Executable File
7 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
TARGET="CHANGELOG.md"
|
|
RELEASES=(`grep -n "^## " $TARGET | sed -E "s/^([0-9]+).*$/\1/g"`)
|
|
UNRELEASED=${RELEASES[0]}
|
|
LATEST=${RELEASES[1]}
|
|
cat $TARGET | head -n $((LATEST - 1)) | tail -n $((LATEST - UNRELEASED - 2))
|