Linus Torvalds <torvalds@osdl.org> writes: > It's incomplete and almost certainly buggy and generally broken, but > here's somethign that you _could_ install as "git-shell", and then put > that as somebodys shell in /etc/passwd, and it's a start. A very rough > start. > > Somebody else gets to test it out ;) > > + if (c != '\'') { > + *dst++ = c; > + continue; > + } > + switch (*++src) { > + case '\0': > + *dst = 0; > + return arg; > + case '\\': > + if (*++src == '\'' && > + *++src == '\'') { > + *dst = '\''; > + continue; > + } > + /* Fallthrough */ > + default: I think this misses HPA's addition to minimally suppport csh braindamage (bang bang). - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Mon Oct 24 09:02:54 2005
This archive was generated by hypermail 2.1.8 : 2005-10-24 09:02:58 EST