mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 02:41:08 +00:00
38 lines
1021 B
C
38 lines
1021 B
C
/* radare - LGPL - Copyright 2009-2013 - pancake */
|
|
|
|
static int cmd_project(void *data, const char *input) {
|
|
RCore *core = (RCore *)data;
|
|
const char *file, *arg = input+1;
|
|
char *str = strdup (r_config_get (core->config, "file.project"));
|
|
if (*arg==' ') arg++;
|
|
file = input[1]?arg:str;
|
|
switch (input[0]) {
|
|
case 'o':
|
|
// if (r_file_is_regular (file))
|
|
r_core_project_open (core, file);
|
|
break;
|
|
case 's':
|
|
r_core_project_save (core, file);
|
|
r_config_set (core->config, "file.project", file);
|
|
break;
|
|
case 'i':
|
|
// if (r_file_is_regular (file))
|
|
free (r_core_project_info (core, file));
|
|
break;
|
|
default: {
|
|
const char* help_msg[] = {
|
|
"Usage:", "P[?osi] [file]", "Project management",
|
|
"Po", " [file]", "open project",
|
|
"Ps", " [file]", "save project",
|
|
"Pi", " [file]", "show project information",
|
|
"NOTE:", "", "See 'e file.project'",
|
|
"NOTE:", "", "project files are stored in ~/.config/radare2/projects",
|
|
NULL};
|
|
r_core_cmd_help (core, help_msg);
|
|
}
|
|
break;
|
|
}
|
|
free (str);
|
|
return R_TRUE;
|
|
}
|