-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuiltin_functions.c
82 lines (79 loc) · 1.57 KB
/
builtin_functions.c
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include "main.h"
/**
* print_env - print the environments
* @arguments: splitted string acc to breaks
* Return: EXIT_SUCCESS = 0
*/
int print_env(__attribute__((unused)) char **arguments)
{
int length;
char **temp = environ;
while (temp && *temp)
{
length = _strlen(*temp);
write(STDOUT_FILENO, *temp, length);
write(STDOUT_FILENO, "\n", 1);
temp++;
}
return (EXIT_SUCCESS);
}
/**
* set_env - set the environments
* @key: splitted string acc to breaks
* @value: splitted string acc to breaks
* Return: EXIT_SUCCESS = 0
*/
int set_env(char *key, char *value)
{
char **args = NULL;
args = malloc(3 * sizeof(char *));
args[1] = _strcopy(key);
args[2] = _strcopy(value);
set_env_variable(args);
free_array_of_pointers(args);
return (EXIT_SUCCESS);
}
/**
* _cd - change directory
* @arguments: splitted string acc to breaks
* Return: EXIT_SUCCESS = 0
*/
int _cd(char **arguments)
{
char *pwd = NULL;
char *old_pwd = NULL;
/* If no directory is provided, change to the home directory*/
if (arguments[1] == NULL)
{
arguments[1] = get_env("HOME");
}
/* If the directory is '-', change to the previous directory*/
if (arguments[1][0] == '-' && arguments[1][1] == '\0')
{
arguments[1] = get_env("OLDPWD");
if (!arguments[1])
{
write(STDERR_FILENO, &"cd: OLDPWD not set\n", 19);
return (EXIT_FAILURE);
}
}
old_pwd = get_env("PWD");
set_env("OLDPWD", old_pwd);
if (chdir(arguments[1]) != 0)
{
perror("cd");
return (EXIT_FAILURE);
}
else
{
/*Update the PWD environment variable*/
pwd = getcwd(NULL, 0);
if (pwd != NULL)
{
set_env("PWD", pwd);
free(pwd);
return (EXIT_SUCCESS);
}
}
return (EXIT_SUCCESS);
}