rename title to grabtitle - grabtitle - stupid HTML title grabber
(HTM) git clone git://git.codemadness.org/grabtitle
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 239ce1bd6d3855175866412b2d9b8c64ddf80930
(DIR) parent 202a253cfb5b88919c479d8abb177de9b4ef9925
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
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(-)
---
(DIR) diff --git a/.gitignore b/.gitignore
@@ -1,3 +1,3 @@
-title
+grabtitle
*.o
*.core
(DIR) 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
(DIR) diff --git a/example.sh b/example.sh
@@ -12,4 +12,4 @@ curl \
-m 5 \
-H 'User-Agent:' \
"$url" 2>/dev/null | \
- ./title
+ ./grabtitle
(DIR) diff --git a/title.c b/grabtitle.c