Skip to content

Commit 2076bf7

Browse files
author
Anton Yuzhaninov
committed
Quote filename to fix file names with space
Also add comment about file encoding.
1 parent 63088eb commit 2076bf7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

file2mail.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ fi
1717
message=`mktemp -t file2kindle`
1818
trap "rm -f $message" INT EXIT TERM
1919

20-
ascii_file_name=$(basename $FILE | iconv -s -f UTF-8 -t KOI7-SWITCHED )
20+
# XXX beteer to encode non ASCII filename but it is not easy to do in shell
21+
# and I'm don't need it
22+
ascii_file_name=$(basename "$FILE" | iconv -s -f UTF-8 -t US-ASCII)
2123
file_mime_type=`file --brief --mime-type "$FILE"`
2224
rfc822_date=$(date -R)
2325
message_id="$(date +%s).$$@$(hostname)"

0 commit comments

Comments
 (0)