mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
4cfd308098
Small documentation fix. /trunk/scripts/crosstool.sh | 2 1 1 0 +- /trunk/docs/overview.txt | 1 1 0 0 + 2 files changed, 2 insertions(+), 1 deletion(-)
9 lines
232 B
Bash
9 lines
232 B
Bash
#!/bin/sh
|
|
|
|
SKIP_ME="### CT_NG SKIP ME ###"
|
|
skip_me=$(($(cat "${0}" |grep --binary-files=text -o -b -E "^${SKIP_ME}$" |cut -d : -f 1)+${#SKIP_ME}+1))
|
|
dd if="${0}" bs=${skip_me} skip=1 2>/dev/null |bzcat
|
|
exit 0
|
|
|
|
### CT_NG SKIP ME ###
|