Commit 008accbbae6b2f18c2039d563f28d46ff4388d36

Authored by Alexey Dobriyan
Committed by Linus Torvalds
1 parent ff45e99dcd

[PATCH] extract-ikconfig: don't use --long-options

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/extract-ikconfig
... ... @@ -21,7 +21,7 @@
21 21 let start="$start + 8"
22 22 let size="$end - $start"
23 23  
24   - head --bytes="$end" "$file" | tail --bytes="$size" | zcat
  24 + dd if="$file" ibs=1 skip="$start" count="$size" 2>/dev/null | zcat
25 25  
26 26 clean_up
27 27 exit 0