blob: 4e2172153a415fc8c068bf764190d326bcc0b116 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#include "buf.h"
#include "core.h"
#include "libcmd/cmd.h"
#include "libcmd/cmd_parse.h"
extern file_t *g_file;
extern buf_t *g_buf;
extern int g_flags;
int c_pwd( cmd_arg_t *arg )
{
int argc = arg->argc;
//char **argv = arg->argv;
char *cur_dir;
if ( argc > 0 )
{
printf("PLZ no arguments\n");
return -1;
}
cur_dir = get_current_dir_name();
if ( errno != 0 )
{
printf("Cannot get current dir\n");
free( cur_dir ); //on failure content unknown;
return -1;
}
printf("%s\n", cur_dir);
free( cur_dir );
cur_dir = NULL;
return 0;
}
int h_pwd( cmd_arg_t *arg )
{
printf(" - path of current shell running instance");
return 0;
}
|