Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3987 → Rev 3988

/programs/system/shell/shell.c
128,10 → 128,16
 
ALIASES = malloc(128*1024);
 
if (strlen(PARAM) > 0)
if (PARAM[0] == 0) strcpy(CMD, ".shell");
else
{
if (PARAM[0] == '/')
{
strcpy(cur_dir, PARAM);
*strrchr(cur_dir, '/')=0;
}
strcpy(CMD, PARAM);
else
strcpy(CMD, ".shell");
}
 
command_execute();