mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
r23825: Add ".." command as an alias to "cd ..".
Guenther (This used to be commit c254c5e2549b2a4fe4895b467c4802f4b8ddb2f3)
This commit is contained in:
parent
36d74b678b
commit
e05f45baef
@ -343,6 +343,19 @@ static int cmd_cd(void)
|
||||
return rc;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
Change directory.
|
||||
****************************************************************************/
|
||||
|
||||
static int cmd_cd_oneup(void)
|
||||
{
|
||||
pstring buf;
|
||||
|
||||
pstrcpy(buf, "..");
|
||||
return do_cd(buf);
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************
|
||||
Decide if a file should be operated on.
|
||||
********************************************************************/
|
||||
@ -3308,7 +3321,8 @@ static struct
|
||||
{"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
|
||||
{"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
|
||||
{"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
|
||||
|
||||
{"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
|
||||
|
||||
/* Yes, this must be here, see crh's comment above. */
|
||||
{"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
|
||||
{NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user