rename title to grabtitle - grabtitle - stupid HTML title grabber | |
git clone git://git.codemadness.org/grabtitle | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 239ce1bd6d3855175866412b2d9b8c64ddf80930 | |
parent 202a253cfb5b88919c479d8abb177de9b4ef9925 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sat, 31 Mar 2018 16:32:39 +0200 | |
rename title to grabtitle | |
Diffstat: | |
M .gitignore | 2 +- | |
M Makefile | 4 ++-- | |
M example.sh | 2 +- | |
R title.c -> grabtitle.c | 0 | |
4 files changed, 4 insertions(+), 4 deletions(-) | |
--- | |
diff --git a/.gitignore b/.gitignore | |
@@ -1,3 +1,3 @@ | |
-title | |
+grabtitle | |
*.o | |
*.core | |
diff --git a/Makefile b/Makefile | |
@@ -1,5 +1,5 @@ | |
build: | |
- cc xml.c title.c -o title | |
+ cc xml.c grabtitle.c -o grabtitle | |
clean: | |
- rm -f title | |
+ rm -f grabtitle | |
diff --git a/example.sh b/example.sh | |
@@ -12,4 +12,4 @@ curl \ | |
-m 5 \ | |
-H 'User-Agent:' \ | |
"$url" 2>/dev/null | \ | |
- ./title | |
+ ./grabtitle | |
diff --git a/title.c b/grabtitle.c |