linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] 2.5.74 - POSIX head & tail
@ 2003-07-03  1:36 Teemu Tervo
  0 siblings, 0 replies; only message in thread
From: Teemu Tervo @ 2003-07-03  1:36 UTC (permalink / raw)
  To: linux-kernel; +Cc: torvalds


Despite being widely used, the 'head/tail -N' syntax isn't POSIX
compliant. This changes it to 'head/tail -n N'.

-Teemu

diff -Naur linux-2.5.74.orig/arch/mips/ramdisk/Makefile linux-2.5.74/arch/mips/ramdisk/Makefile
--- linux-2.5.74.orig/arch/mips/ramdisk/Makefile	Thu Jul  3 03:25:01 2003
+++ linux-2.5.74/arch/mips/ramdisk/Makefile	Thu Jul  3 03:28:34 2003
@@ -2,7 +2,7 @@
 # Makefile for a ramdisk image
 #
 
-O_FORMAT = $(shell $(OBJDUMP) -i | head -2 | grep elf32)
+O_FORMAT = $(shell $(OBJDUMP) -i | head -n 2 | grep elf32)
 img = $(CONFIG_EMBEDDED_RAMDISK_IMAGE)
 ramdisk.o: $(subst ",,$(img)) ld.script
 	echo "O_FORMAT:  " $(O_FORMAT)
diff -Naur linux-2.5.74.orig/arch/ppc64/boot/Makefile linux-2.5.74/arch/ppc64/boot/Makefile
--- linux-2.5.74.orig/arch/ppc64/boot/Makefile	Thu Jul  3 03:25:18 2003
+++ linux-2.5.74/arch/ppc64/boot/Makefile	Thu Jul  3 03:27:50 2003
@@ -118,7 +118,7 @@
 	ls -l vmlinux | \
 	awk '{printf "/* generated -- do not edit! */\n" \
 		"unsigned long vmlinux_filesize = %d;\n", $$5}' > $(obj)/imagesize.c
-	$(CROSS_COMPILE)nm -n vmlinux | tail -1 | \
+	$(CROSS_COMPILE)nm -n vmlinux | tail -n 1 | \
 	awk '{printf "unsigned long vmlinux_memsize = 0x%s;\n", substr($$1,8)}' \
 		>> $(obj)/imagesize.c
 
diff -Naur linux-2.5.74.orig/scripts/mkcompile_h linux-2.5.74/scripts/mkcompile_h
--- linux-2.5.74.orig/scripts/mkcompile_h	Thu Jul  3 03:27:06 2003
+++ linux-2.5.74/scripts/mkcompile_h	Thu Jul  3 03:27:50 2003
@@ -54,7 +54,7 @@
     echo \#define LINUX_COMPILE_DOMAIN
   fi
 
-  echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | tail -1`\"
+  echo \#define LINUX_COMPILER \"`$CC -v 2>&1 | tail -n 1`\"
 ) > .tmpcompile
 
 # Only replace the real compile.h if the new one is different,
diff -Naur linux-2.5.74.orig/scripts/ver_linux linux-2.5.74/scripts/ver_linux
--- linux-2.5.74.orig/scripts/ver_linux	Thu Jul  3 03:27:06 2003
+++ linux-2.5.74/scripts/ver_linux	Thu Jul  3 03:27:50 2003
@@ -55,7 +55,7 @@
 -e 's/\.so$//' | awk -F'[.-]'   '{print "Linux C Library        " \
 $(NF-2)"."$(NF-1)"."$NF}'
 
-ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -1 | awk \
+ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
 'NR==1{print "Dynamic linker (ldd)  ", $NF}'
 
 ls -l /usr/lib/lib{g,stdc}++.so  2>/dev/null | awk -F. \

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-07-03  1:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-03  1:36 [PATCH] 2.5.74 - POSIX head & tail Teemu Tervo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).