aboutsummaryrefslogtreecommitdiffstats
path: root/info/behead
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-03-07 20:50:01 +0100
committerMattias Andrée <maandree@kth.se>2021-03-07 20:50:01 +0100
commit6d4d0823dc508b35c53735a872190ad43aa60315 (patch)
tree4ff15b8e91882f21393a0815a54e4865d956c040 /info/behead
parentAssume all EDID 1.x are compatible (diff)
downloadlibgamma-6d4d0823dc508b35c53735a872190ad43aa60315.tar.gz
libgamma-6d4d0823dc508b35c53735a872190ad43aa60315.tar.bz2
libgamma-6d4d0823dc508b35c53735a872190ad43aa60315.tar.xz
Start replacing info manual with man pages
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'info/behead')
-rwxr-xr-xinfo/behead12
1 files changed, 0 insertions, 12 deletions
diff --git a/info/behead b/info/behead
deleted file mode 100755
index 9bd4ced..0000000
--- a/info/behead
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env sh
-# See LICENSE file for copyright and license details.
-
-beheading="$1"
-
-data="$(cat)"
-lines="$(echo "${data}" | wc -l)"
-lines=$(expr ${lines} - ${beheading} )
-
-if test $lines -gt 0; then
- echo "$(echo "${data}" | tail -n ${lines})"
-fi