From 6d19f0e9c4143eeb93dbaa60211b89bcf4a0f411 Mon Sep 17 00:00:00 2001 From: Stathis Kamperis Date: Mon, 13 Aug 2007 15:13:00 +0300 Subject: [PATCH] Don't sort in list.sh and update CONTENTS file --- CONTENTS | 12 ++++++------ list.sh | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTENTS b/CONTENTS index f9f4655..a2cc2c6 100644 --- a/CONTENTS +++ b/CONTENTS @@ -1,19 +1,19 @@ -listdir.c -listdir_recursive.c -readwd.c disklabel.c -linkedlist.c +echo_off.c fork.c fork_execlp.c fork_mult.c -mmap.c kqclient.c kqdir.c kqtimer.c +linkedlist.c +listdir.c +listdir_recursive.c matrixmul.c +mmap.c pthread_create.c pthread_join.c pthread_mutex.c pthread_semaphore.c +readwd.c sleepbarber.c -echo_off.c diff --git a/list.sh b/list.sh index bcb6c02..f7ba32a 100755 --- a/list.sh +++ b/list.sh @@ -1,5 +1,5 @@ #!/bin/sh for i in `find . -name *.c` do - echo `basename $i | sort` + echo `basename $i` done -- 2.11.4.GIT