kill lash. "lash" builtin still exists, but it runs hush.

This commit is contained in:
Denis Vlasenko
2007-11-23 23:28:55 +00:00
parent 8ec6ee47f1
commit 96702ca945
7 changed files with 19 additions and 31 deletions

View File

@@ -3925,3 +3925,13 @@ int hush_main(int argc, char **argv)
#endif
hush_exit(opt ? opt : last_return_code);
}
#if ENABLE_LASH
int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int lash_main(int argc, char **argv)
{
//bb_error_msg("lash is deprecated, please use hush instead");
return hush_main(argc, argv);
}
#endif