implement support for parameter substitution via #/% operators

This commit is contained in:
Mike Frysinger
2009-04-07 06:03:22 +00:00
parent 6c9be7f451
commit a4f331d3c3
6 changed files with 242 additions and 24 deletions

22
shell/match.h Normal file
View File

@@ -0,0 +1,22 @@
/* match.h - interface to shell ##/%% matching code */
typedef char *(*scan_t)(char *string, char *match, bool zero);
char *scanleft(char *string, char *match, bool zero);
char *scanright(char *string, char *match, bool zero);
static inline scan_t pick_scan(char op1, char op2, bool *zero)
{
/* # - scanleft
* ## - scanright
* % - scanright
* %% - scanleft
*/
if (op1 == '#') {
*zero = true;
return op1 == op2 ? scanright : scanleft;
} else {
*zero = false;
return op1 == op2 ? scanleft : scanright;
}
}