>[оверквотинг удален]
>Warning: Cannot change to /usr/home/username/tmp_/
>
>А вот по FTP пускает.
>
>+++++++++
>
>Нашел)))))
>
>Глюк проявляется только в bash'е
>bash-3.2.17_2 Патч:
--- subshell-orig.c 2005-06-07 20:19:19.000000000 +1100
+++ subshell.c 2007-07-29 17:27:57.000000000 +1100
@@ -722,17 +722,19 @@
* Print every character in octal format with the leading backslash.
* tcsh and zsh may require 4-digit octals, bash < 2.05b doesn't like them.
*/
- if (subshell_type == BASH) {
- for (; *s; s++) {
+
+// if (subshell_type == BASH) {
+// for (; *s; s++) {
/* Must quote numbers, so that they are not glued to octals */
- if (isalpha ((unsigned char) *s)) {
- *d++ = (unsigned char) *s;
- } else {
- sprintf (d, "\\o", (unsigned char) *s);
- d += 4;
- }
- }
- } else {
+// if (isalpha ((unsigned char) *s)) {
+// *d++ = (unsigned char) *s;
+// } else {
+// sprintf (d, "\\o", (unsigned char) *s);
+// d += 4;
+// }
+// }
+// } else {
+
for (; *s; s++) {
if (isalnum ((unsigned char) *s)) {
*d++ = (unsigned char) *s;
@@ -741,7 +743,7 @@
d += 5;
}
}
- }
+// }
memcpy (d, common_end, sizeof (common_end));