Skip to content

Commit

Permalink
save progress
Browse files Browse the repository at this point in the history
  • Loading branch information
liweinan committed Mar 9, 2013
1 parent fdae23c commit 7873792
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@ tmp
.DS_Store .DS_Store
*.o *.o
*.exe *.exe
*~
4 changes: 4 additions & 0 deletions bash/README.md
Expand Up @@ -347,3 +347,7 @@ echo -e will evaluate the string:


--- ---


weli@power:~$ ls a?(.gif)
a.gif
weli@power:~$ ls a+(.gif)
a.gif a.gif.gif
7 changes: 7 additions & 0 deletions make/ch03/Makefile
@@ -0,0 +1,7 @@
hello.o: hello.c /usr/include/stdio.h /usr/include/sys/cdefs.h \
/usr/include/sys/_symbol_aliasing.h \
/usr/include/sys/_posix_availability.h /usr/include/Availability.h \
/usr/include/AvailabilityInternal.h /usr/include/_types.h \
/usr/include/sys/_types.h /usr/include/machine/_types.h \
/usr/include/i386/_types.h /usr/include/secure/_stdio.h \
/usr/include/secure/_common.h
6 changes: 6 additions & 0 deletions make/ch03/hello.c
@@ -0,0 +1,6 @@
#include <stdio.h>

int main() {
printf("Hello, world!");
}

6 changes: 6 additions & 0 deletions make/ch05/Makefile
@@ -0,0 +1,6 @@
_Q=@

ls-file:
$(_Q) ls -l

.PHONY: ls-file

0 comments on commit 7873792

Please sign in to comment.