-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcd.c
160 lines (132 loc) · 3 KB
/
cd.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#include "main.h"
/**
* cd_dot - to change to the parent dir
* @commandArg: data rel (environment)
* Return: none
*/
void cd_dot(param *commandArg)
{
char current_pwd[PATH_MAX];
char *dir, *cp_pwd, *cp_strtok_pwd;
getcwd(current_pwd, sizeof(current_pwd));
cp_pwd = _strdup(current_pwd);
set_env("OLDPWD", cp_pwd, commandArg);
dir = commandArg->args[1];
if (_strcmp(".", dir) == 0)
{
set_env("PWD", cp_pwd, commandArg);
free(cp_pwd);
return;
}
if (_strcmp("/", cp_pwd) == 0)
{
free(cp_pwd);
return;
}
cp_strtok_pwd = cp_pwd;
rev_string(cp_strtok_pwd);
cp_strtok_pwd = _strtok(cp_strtok_pwd, "/");
if (cp_strtok_pwd != NULL)
{
cp_strtok_pwd = _strtok(NULL, "\0");
if (cp_strtok_pwd != NULL)
rev_string(cp_strtok_pwd);
}
if (cp_strtok_pwd != NULL)
{
chdir(cp_strtok_pwd);
set_env("PWD", cp_strtok_pwd, commandArg);
}
else
{
chdir("/");
set_env("PWD", "/", commandArg);
}
commandArg->status = 0;
free(cp_pwd);
}
/**
* cd_to - change to dir given
* by user
* @commandArg: data relevant to the dir
* Return: none
*/
void cd_to(param *commandArg)
{
char current_pwd[PATH_MAX];
char *dir, *cp_pwd, *cp_dir;
getcwd(current_pwd, sizeof(current_pwd));
dir = commandArg->args[1];
if (chdir(dir) == -1)
{
get_error(commandArg, 2);
return;
}
cp_pwd = _strdup(current_pwd);
set_env("OLDPWD", cp_pwd, commandArg);
cp_dir = _strdup(dir);
set_env("PWD", cp_dir, commandArg);
free(cp_pwd);
free(cp_dir);
commandArg->status = 0;
chdir(dir);
}
/**
* cd_previous - change to the prev dir
* @commandArg: data rel to the environment
* Return: no returns
*/
void cd_previous(param *commandArg)
{
char current_pwd[PATH_MAX];
char *previous_pwd, *p_oldpwd, *cp_pwd, *cp_oldpwd;
getcwd(current_pwd, sizeof(current_pwd));
cp_pwd = _strdup(current_pwd);
p_oldpwd = _getenv("OLDPWD", commandArg->_environ);
if (p_oldpwd == NULL)
cp_oldpwd = cp_pwd;
else
cp_oldpwd = _strdup(p_oldpwd);
set_env("OLDPWD", cp_pwd, commandArg);
if (chdir(cp_oldpwd) == -1)
set_env("PWD", cp_pwd, commandArg);
else
set_env("PWD", cp_oldpwd, commandArg);
previous_pwd = _getenv("PWD", commandArg->_environ);
write(STDOUT_FILENO, previous_pwd, _strlen(previous_pwd));
write(STDOUT_FILENO, "\n", 1);
free(cp_pwd);
if (p_oldpwd)
free(cp_oldpwd);
commandArg->status = 0;
chdir(previous_pwd);
}
/**
* cd_to_home- change to the home_directory
* @commandArg: data rel to environ
* Return: none
*/
void cd_to_home(param *commandArg)
{
char *previous_pwd, *home_directory;
char current_pwd[PATH_MAX];
getcwd(current_pwd, sizeof(current_pwd));
previous_pwd = _strdup(current_pwd);
home_directory = _getenv("HOME", commandArg->_environ);
if (home_directory == NULL)
{
set_env("OLDPWD", previous_pwd, commandArg);
free(previous_pwd);
return;
}
if (chdir(home_directory) == -1)
{
get_error(commandArg, 2);
free(previous_pwd);
return;
}
set_env("OLDPWD", previous_pwd, commandArg);
set_env("PWD", home_directory, commandArg);
free(previous_pwd);
commandArg->status = 0;
}