Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-07-19 19:27:59 +0400
committerChristopher Faylor <me@cgf.cx>2001-07-19 19:27:59 +0400
commitaea57aa057b8d61aa220c17089a02fcfac4b7ec3 (patch)
treeb84b25b973c75f9821c32b7226ce165e5f028a51
parent4e1965bb51fcbd98c36147bb7db6dba6c2dd2ee2 (diff)
fix typo.
-rw-r--r--winsup/utils/utils.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/utils.sgml b/winsup/utils/utils.sgml
index 435b66182..2e4578864 100644
--- a/winsup/utils/utils.sgml
+++ b/winsup/utils/utils.sgml
@@ -108,7 +108,7 @@ omitted.</para>
<example><title>Example cygpath usage</title>
<screen>
#!/bin/sh
-for i in `echo *.exe | sed 's/\.exe/cc/'`
+for i in `echo *.exe | sed 's/\.exe/.cc/'`
do
notepad "`cygpath -w $i`"
done