Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4105 → Rev 4106

/programs/system/shell/History.txt
1,3 → 1,8
Shell 0.7.2 // 26.10.2013 // Albom
* ” ©« .shell ¯¥à¥­¥á¥­ ¢ /sys/settings/
* ˆá¯à ¢«¥­  ª®¬ ­¤  "cd .."
 
 
Shell 0.7.1 // 19.10.2013 // Albom
* ˆá¯à ¢«¥­  ®è¨¡ª , á¢ï§ ­­ ï á § ¢¨á ­¨¥¬ ¯à¨ ¯®¯ë⪥ ç⥭¨ï ¯ãá⮩ ¨áâ®à¨¨ ª®¬ ­¤ (¯® ª« ¢¨è ¬ Up ¨ Down)
 
/programs/system/shell/cmd/cmd_cd.c
22,7 → 22,7
{
cur_dir[strlen(cur_dir)-1]='\0';
dir_truncate(cur_dir);
return FALSE;
return TRUE;
}
 
if ( '/' == dir[0])
/programs/system/shell/globals.h
1,5 → 1,5
 
#define SHELL_VERSION "0.7.1"
#define SHELL_VERSION "0.7.2"
 
extern char PATH[256];
extern char PARAM[256];
/programs/system/shell/shell.c
128,7 → 128,13
 
ALIASES = malloc(128*1024);
 
if (PARAM[0] == 0) strcpy(CMD, ".shell");
if (PARAM[0] == 0)
{
strcpy(CMD, cur_dir);
strcat(CMD, ".shell");
if ( !file_check(CMD) )
strcpy(CMD, "/sys/settings/.shell");
}
else
{
if (PARAM[0] == '/')