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 /networking | |
parent | 108b8c5367e224568d22e8ef32a56aa166ab1e79 (diff) | |
download | busybox-e66ccfaa2c0a575f56202dd343de923929cf1f38.tar.gz |
remove some garbage from http POST upload example
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-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 } # Empty line + NOT delimiter. Save empty line, # and go check next line - printf "%s\n" $'\r' -vC >&3 + printf "%s\n" $'\r' >&3 done # Not empty line - just save - printf "%s\n" "$line" -vC >&3 + printf "%s\n" "$line" >&3 done 3>"$file" cat <<EOF |