diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-09 22:33:30 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-09 22:33:30 +0200 |
commit | e66ccfaa2c0a575f56202dd343de923929cf1f38 (patch) | |
tree | 619f948c5422be93a397d251b2d39d24b0dfe86e | |
parent | 108b8c5367e224568d22e8ef32a56aa166ab1e79 (diff) | |
download | busybox-w32-e66ccfaa2c0a575f56202dd343de923929cf1f38.tar.gz busybox-w32-e66ccfaa2c0a575f56202dd343de923929cf1f38.tar.bz2 busybox-w32-e66ccfaa2c0a575f56202dd343de923929cf1f38.zip |
remove some garbage from http POST upload example
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/httpd_post_upload.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/httpd_post_upload.txt b/networking/httpd_post_upload.txt index a53b11467..fd7fc2be4 100644 --- a/networking/httpd_post_upload.txt +++ b/networking/httpd_post_upload.txt | |||
@@ -63,10 +63,10 @@ EOF | |||
63 | } | 63 | } |
64 | # Empty line + NOT delimiter. Save empty line, | 64 | # Empty line + NOT delimiter. Save empty line, |
65 | # and go check next line | 65 | # and go check next line |
66 | printf "%s\n" $'\r' -vC >&3 | 66 | printf "%s\n" $'\r' >&3 |
67 | done | 67 | done |
68 | # Not empty line - just save | 68 | # Not empty line - just save |
69 | printf "%s\n" "$line" -vC >&3 | 69 | printf "%s\n" "$line" >&3 |
70 | done 3>"$file" | 70 | done 3>"$file" |
71 | 71 | ||
72 | cat <<EOF | 72 | cat <<EOF |