| Line | Source | Count |
| 1 | This file is pushd.def, from which is created pushd.c. It implements the | - |
| 2 | builtins "pushd", "popd", and "dirs" in Bash. | - |
| 3 | | - |
| 4 | Copyright (C) 1987-2015 Free Software Foundation, Inc. | - |
| 5 | | - |
| 6 | This file is part of GNU Bash, the Bourne Again SHell. | - |
| 7 | | - |
| 8 | Bash is free software: you can redistribute it and/or modify | - |
| 9 | it under the terms of the GNU General Public License as published by | - |
| 10 | the Free Software Foundation, either version 3 of the License, or | - |
| 11 | (at your option) any later version. | - |
| 12 | | - |
| 13 | Bash is distributed in the hope that it will be useful, | - |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | - |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | - |
| 16 | GNU General Public License for more details. | - |
| 17 | | - |
| 18 | You should have received a copy of the GNU General Public License | - |
| 19 | along with Bash. If not, see <http: | - |
| 20 | | - |
| 21 | $PRODUCES pushd.c | - |
| 22 | | - |
| 23 | $BUILTIN pushd | - |
| 24 | $FUNCTION pushd_builtin | - |
| 25 | $DEPENDS_ON PUSHD_AND_POPD | - |
| 26 | $SHORT_DOC pushd [-n] [+N | -N | dir] | - |
| 27 | Add directories to stack. | - |
| 28 | | - |
| 29 | Adds a directory to the top of the directory stack, or rotates | - |
| 30 | the stack, making the new top of the stack the current working | - |
| 31 | directory. With no arguments, exchanges the top two directories. | - |
| 32 | | - |
| 33 | Options: | - |
| 34 | -n Suppresses the normal change of directory when adding | - |
| 35 | directories to the stack, so only the stack is manipulated. | - |
| 36 | | - |
| 37 | Arguments: | - |
| 38 | +N Rotates the stack so that the Nth directory (counting | - |
| 39 | from the left of the list shown by `dirs', starting with | - |
| 40 | zero) is at the top. | - |
| 41 | | - |
| 42 | -N Rotates the stack so that the Nth directory (counting | - |
| 43 | from the right of the list shown by `dirs', starting with | - |
| 44 | zero) is at the top. | - |
| 45 | | - |
| 46 | dir Adds DIR to the directory stack at the top, making it the | - |
| 47 | new current working directory. | - |
| 48 | | - |
| 49 | The `dirs' builtin displays the directory stack. | - |
| 50 | | - |
| 51 | Exit Status: | - |
| 52 | Returns success unless an invalid argument is supplied or the directory | - |
| 53 | change fails. | - |
| 54 | $END | - |
| 55 | | - |
| 56 | $BUILTIN popd | - |
| 57 | $FUNCTION popd_builtin | - |
| 58 | $DEPENDS_ON PUSHD_AND_POPD | - |
| 59 | $SHORT_DOC popd [-n] [+N | -N] | - |
| 60 | Remove directories from stack. | - |
| 61 | | - |
| 62 | Removes entries from the directory stack. With no arguments, removes | - |
| 63 | the top directory from the stack, and changes to the new top directory. | - |
| 64 | | - |
| 65 | Options: | - |
| 66 | -n Suppresses the normal change of directory when removing | - |
| 67 | directories from the stack, so only the stack is manipulated. | - |
| 68 | | - |
| 69 | Arguments: | - |
| 70 | +N Removes the Nth entry counting from the left of the list | - |
| 71 | shown by `dirs', starting with zero. For example: `popd +0' | - |
| 72 | removes the first directory, `popd +1' the second. | - |
| 73 | | - |
| 74 | -N Removes the Nth entry counting from the right of the list | - |
| 75 | shown by `dirs', starting with zero. For example: `popd -0' | - |
| 76 | removes the last directory, `popd -1' the next to last. | - |
| 77 | | - |
| 78 | The `dirs' builtin displays the directory stack. | - |
| 79 | | - |
| 80 | Exit Status: | - |
| 81 | Returns success unless an invalid argument is supplied or the directory | - |
| 82 | change fails. | - |
| 83 | $END | - |
| 84 | | - |
| 85 | $BUILTIN dirs | - |
| 86 | $FUNCTION dirs_builtin | - |
| 87 | $DEPENDS_ON PUSHD_AND_POPD | - |
| 88 | $SHORT_DOC dirs [-clpv] [+N] [-N] | - |
| 89 | Display directory stack. | - |
| 90 | | - |
| 91 | Display the list of currently remembered directories. Directories | - |
| 92 | find their way onto the list with the `pushd' command; you can get | - |
| 93 | back up through the list with the `popd' command. | - |
| 94 | | - |
| 95 | Options: | - |
| 96 | -c clear the directory stack by deleting all of the elements | - |
| 97 | -l do not print tilde-prefixed versions of directories relative | - |
| 98 | to your home directory | - |
| 99 | -p print the directory stack with one entry per line | - |
| 100 | -v print the directory stack with one entry per line prefixed | - |
| 101 | with its position in the stack | - |
| 102 | | - |
| 103 | Arguments: | - |
| 104 | +N Displays the Nth entry counting from the left of the list | - |
| 105 | shown by dirs when invoked without options, starting with | - |
| 106 | zero. | - |
| 107 | | - |
| 108 | -N Displays the Nth entry counting from the right of the list | - |
| 109 | shown by dirs when invoked without options, starting with | - |
| 110 | zero. | - |
| 111 | | - |
| 112 | Exit Status: | - |
| 113 | Returns success unless an invalid option is supplied or an error occurs. | - |
| 114 | $END | - |
| 115 | | - |
| 116 | #include <config.h> | - |
| 117 | | - |
| 118 | #if defined (PUSHD_AND_POPD) | - |
| 119 | #include <stdio.h> | - |
| 120 | #if defined (HAVE_SYS_PARAM_H) | - |
| 121 | # include <sys/param.h> | - |
| 122 | #endif | - |
| 123 | | - |
| 124 | #if defined (HAVE_UNISTD_H) | - |
| 125 | # ifdef _MINIX | - |
| 126 | # include <sys/types.h> | - |
| 127 | # endif | - |
| 128 | # include <unistd.h> | - |
| 129 | #endif | - |
| 130 | | - |
| 131 | #include "../bashansi.h" | - |
| 132 | #include "../bashintl.h" | - |
| 133 | | - |
| 134 | #include <errno.h> | - |
| 135 | | - |
| 136 | #include <tilde/tilde.h> | - |
| 137 | | - |
| 138 | #include "../shell.h" | - |
| 139 | #include "maxpath.h" | - |
| 140 | #include "common.h" | - |
| 141 | #include "builtext.h" | - |
| 142 | | - |
| 143 | #ifdef LOADABLE_BUILTIN | - |
| 144 | # include "builtins.h" | - |
| 145 | #endif | - |
| 146 | | - |
| 147 | #if !defined (errno) | - |
| 148 | extern int errno; | - |
| 149 | #endif /* !errno */ | - |
| 150 | | - |
| 151 | | - |
| 152 | static char **pushd_directory_list = (char **)NULL; | - |
| 153 | | - |
| 154 | | - |
| 155 | static int directory_list_size; | - |
| 156 | | - |
| 157 | | - |
| 158 | static int directory_list_offset; | - |
| 159 | | - |
| 160 | static void pushd_error __P((int, char *)); | - |
| 161 | static void clear_directory_stack __P((void)); | - |
| 162 | static int cd_to_string __P((char *)); | - |
| 163 | static int change_to_temp __P((char *)); | - |
| 164 | static void add_dirstack_element __P((char *)); | - |
| 165 | static int get_dirstack_index __P((intmax_t, int, int *)); | - |
| 166 | | - |
| 167 | #define NOCD 0x01 | - |
| 168 | #define ROTATE 0x02 | - |
| 169 | #define LONGFORM 0x04 | - |
| 170 | #define CLEARSTAK 0x08 | - |
| 171 | | - |
| 172 | int | - |
| 173 | pushd_builtin (list) | - |
| 174 | WORD_LIST *list; | - |
| 175 | { | - |
| 176 | WORD_LIST *orig_list; | - |
| 177 | char *temp, *current_directory, *top; | - |
| 178 | int j, flags, skipopt; | - |
| 179 | intmax_t num; | - |
| 180 | char direction; | - |
| 181 | | - |
| 182 | orig_list = list; | - |
| 183 | | - |
| 184 | CHECK_HELPOPT (list); never executed: __result = (((const unsigned char *) (const char *) ( ((list)->word->word) ))[3] - __s2[3]); never executed: end of block never executed: end of block never executed: __result = (((const unsigned char *) (const char *) ( "--help" ))[3] - __s2[3]); never executed: end of block never executed: end of block never executed: return (258); | TRUE | evaluated 13 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| TRUE | evaluated 13 times by 1 test | | FALSE | never evaluated |
| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 8 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 5 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-13 |
| 185 | if (list && list->word && ISOPTION (list->word->word, '-'))| TRUE | evaluated 13 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| TRUE | evaluated 13 times by 1 test | | FALSE | never evaluated |
| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 8 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 5 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-13 |
| 186 | { | - |
| 187 | list = list->next; | - |
| 188 | skipopt = 1; | - |
| 189 | } never executed: end of block | 0 |
| 190 | else | - |
| 191 | skipopt = 0;executed 16 times by 1 test: skipopt = 0; | 16 |
| 192 | | - |
| 193 | | - |
| 194 | | - |
| 195 | if (list == 0)| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 13 times by 1 test |
| 3-13 |
| 196 | { | - |
| 197 | if (directory_list_offset == 0)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 2 times by 1 test |
| 1-2 |
| 198 | { | - |
| 199 | builtin_error (_("no other directory")); | - |
| 200 | return (EXECUTION_FAILURE);executed 1 time by 1 test: return (1); | 1 |
| 201 | } | - |
| 202 | | - |
| 203 | current_directory = get_working_directory ("pushd"); | - |
| 204 | if (current_directory == 0)| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| 0-2 |
| 205 | return (EXECUTION_FAILURE); never executed: return (1); | 0 |
| 206 | | - |
| 207 | j = directory_list_offset - 1; | - |
| 208 | temp = pushd_directory_list[j]; | - |
| 209 | pushd_directory_list[j] = current_directory; | - |
| 210 | j = change_to_temp (temp); | - |
| 211 | free (temp); | - |
| 212 | return j;executed 2 times by 1 test: return j; | 2 |
| 213 | } | - |
| 214 | | - |
| 215 | for (flags = 0; skipopt == 0 && list; list = list->next)| TRUE | evaluated 17 times by 1 test | | FALSE | never evaluated |
| TRUE | evaluated 15 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| 0-17 |
| 216 | { | - |
| 217 | if (ISOPTION (list->word->word, 'n'))| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 10 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | never evaluated |
| 0-10 |
| 218 | { | - |
| 219 | flags |= NOCD; | - |
| 220 | }executed 2 times by 1 test: end of block | 2 |
| 221 | else if (ISOPTION (list->word->word, '-'))| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 10 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 3 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-10 |
| 222 | { | - |
| 223 | list = list->next; | - |
| 224 | break; never executed: break; | 0 |
| 225 | } | - |
| 226 | else if (list->word->word[0] == '-' && list->word->word[1] == '\0')| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 10 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 3 times by 1 test |
| 0-10 |
| 227 | | - |
| 228 | break; never executed: break; | 0 |
| 229 | else if (((direction = list->word->word[0]) == '+') || direction == '-')| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 11 times by 1 test |
| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 8 times by 1 test |
| 2-11 |
| 230 | { | - |
| 231 | if (legal_number (list->word->word + 1, &num) == 0)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 4 times by 1 test |
| 1-4 |
| 232 | { | - |
| 233 | sh_invalidnum (list->word->word); | - |
| 234 | builtin_usage (); | - |
| 235 | return (EX_USAGE);executed 1 time by 1 test: return (258); | 1 |
| 236 | } | - |
| 237 | | - |
| 238 | if (direction == '-')| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| 2 |
| 239 | num = directory_list_offset - num;executed 2 times by 1 test: num = directory_list_offset - num; | 2 |
| 240 | | - |
| 241 | if (num > directory_list_offset || num < 0)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 3 times by 1 test |
| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 2 times by 1 test |
| 1-3 |
| 242 | { | - |
| 243 | pushd_error (directory_list_offset, list->word->word); | - |
| 244 | return (EXECUTION_FAILURE);executed 2 times by 1 test: return (1); | 2 |
| 245 | } | - |
| 246 | flags |= ROTATE; | - |
| 247 | }executed 2 times by 1 test: end of block | 2 |
| 248 | else if (*list->word->word == '-')| TRUE | never evaluated | | FALSE | evaluated 8 times by 1 test |
| 0-8 |
| 249 | { | - |
| 250 | sh_invalidopt (list->word->word); | - |
| 251 | builtin_usage (); | - |
| 252 | return (EX_USAGE); never executed: return (258); | 0 |
| 253 | } | - |
| 254 | else | - |
| 255 | break;executed 8 times by 1 test: break; | 8 |
| 256 | } | - |
| 257 | | - |
| 258 | if (flags & ROTATE)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 8 times by 1 test |
| 2-8 |
| 259 | { | - |
| 260 | | - |
| 261 | | - |
| 262 | temp = get_working_directory ("pushd"); | - |
| 263 | | - |
| 264 | if (num == 0)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 265 | { | - |
| 266 | j = ((flags & NOCD) == 0) ? change_to_temp (temp) : EXECUTION_SUCCESS;| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 267 | free (temp); | - |
| 268 | return j;executed 1 time by 1 test: return j; | 1 |
| 269 | } | - |
| 270 | | - |
| 271 | do | - |
| 272 | { | - |
| 273 | top = pushd_directory_list[directory_list_offset - 1]; | - |
| 274 | | - |
| 275 | for (j = directory_list_offset - 2; j > -1; j--)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1 |
| 276 | pushd_directory_list[j + 1] = pushd_directory_list[j];executed 1 time by 1 test: pushd_directory_list[j + 1] = pushd_directory_list[j]; | 1 |
| 277 | | - |
| 278 | pushd_directory_list[j + 1] = temp; | - |
| 279 | | - |
| 280 | temp = top; | - |
| 281 | num--; | - |
| 282 | }executed 1 time by 1 test: end of block | 1 |
| 283 | while (num);| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 284 | | - |
| 285 | j = ((flags & NOCD) == 0) ? change_to_temp (temp) : EXECUTION_SUCCESS;| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 286 | free (temp); | - |
| 287 | return j;executed 1 time by 1 test: return j; | 1 |
| 288 | } | - |
| 289 | | - |
| 290 | if (list == 0)| TRUE | never evaluated | | FALSE | evaluated 8 times by 1 test |
| 0-8 |
| 291 | return (EXECUTION_SUCCESS); never executed: return (0); | 0 |
| 292 | | - |
| 293 | | - |
| 294 | | - |
| 295 | current_directory = get_working_directory ("pushd"); | - |
| 296 | if (current_directory == 0)| TRUE | never evaluated | | FALSE | evaluated 8 times by 1 test |
| 0-8 |
| 297 | return (EXECUTION_FAILURE); never executed: return (1); | 0 |
| 298 | | - |
| 299 | j = ((flags & NOCD) == 0) ? cd_builtin (skipopt ? orig_list : list) : EXECUTION_SUCCESS;| TRUE | evaluated 7 times by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1-7 |
| 300 | if (j == EXECUTION_SUCCESS)| TRUE | evaluated 7 times by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1-7 |
| 301 | { | - |
| 302 | add_dirstack_element ((flags & NOCD) ? savestring (list->word->word) : current_directory); | - |
| 303 | dirs_builtin ((WORD_LIST *)NULL); | - |
| 304 | if (flags & NOCD)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 6 times by 1 test |
| 1-6 |
| 305 | free (current_directory);executed 1 time by 1 test: sh_xfree((current_directory), "./pushd.def", 305); | 1 |
| 306 | return (EXECUTION_SUCCESS);executed 7 times by 1 test: return (0); | 7 |
| 307 | } | - |
| 308 | else | - |
| 309 | { | - |
| 310 | free (current_directory); | - |
| 311 | return (EXECUTION_FAILURE);executed 1 time by 1 test: return (1); | 1 |
| 312 | } | - |
| 313 | } | - |
| 314 | | - |
| 315 | | - |
| 316 | | - |
| 317 | | - |
| 318 | int | - |
| 319 | popd_builtin (list) | - |
| 320 | WORD_LIST *list; | - |
| 321 | { | - |
| 322 | register int i; | - |
| 323 | intmax_t which; | - |
| 324 | int flags; | - |
| 325 | char direction; | - |
| 326 | char *which_word; | - |
| 327 | | - |
| 328 | CHECK_HELPOPT (list); never executed: __result = (((const unsigned char *) (const char *) ( ((list)->word->word) ))[3] - __s2[3]); never executed: end of block never executed: end of block never executed: __result = (((const unsigned char *) (const char *) ( "--help" ))[3] - __s2[3]); never executed: end of block never executed: end of block never executed: return (258); | TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| TRUE | evaluated 5 times by 1 test | | FALSE | never evaluated |
| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 3 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-5 |
| 329 | | - |
| 330 | which_word = (char *)NULL; | - |
| 331 | for (flags = 0, which = 0, direction = '+'; list; list = list->next)| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 6 times by 1 test |
| 6 |
| 332 | { | - |
| 333 | if (ISOPTION (list->word->word, 'n'))| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 2 times by 1 test |
| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-3 |
| 334 | { | - |
| 335 | flags |= NOCD; | - |
| 336 | }executed 1 time by 1 test: end of block | 1 |
| 337 | else if (ISOPTION (list->word->word, '-'))| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-3 |
| 338 | { | - |
| 339 | list = list->next; | - |
| 340 | break; never executed: break; | 0 |
| 341 | } | - |
| 342 | else if (((direction = list->word->word[0]) == '+') || direction == '-')| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | never evaluated |
| 0-3 |
| 343 | { | - |
| 344 | if (legal_number (list->word->word + 1, &which) == 0)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 4 times by 1 test |
| 1-4 |
| 345 | { | - |
| 346 | sh_invalidnum (list->word->word); | - |
| 347 | builtin_usage (); | - |
| 348 | return (EX_USAGE);executed 1 time by 1 test: return (258); | 1 |
| 349 | } | - |
| 350 | which_word = list->word->word; | - |
| 351 | }executed 4 times by 1 test: end of block | 4 |
| 352 | else if (*list->word->word == '-')| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 353 | { | - |
| 354 | sh_invalidopt (list->word->word); | - |
| 355 | builtin_usage (); | - |
| 356 | return (EX_USAGE); never executed: return (258); | 0 |
| 357 | } | - |
| 358 | else if (*list->word->word)| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 359 | { | - |
| 360 | builtin_error (_("%s: invalid argument"), list->word->word); | - |
| 361 | builtin_usage (); | - |
| 362 | return (EX_USAGE); never executed: return (258); | 0 |
| 363 | } | - |
| 364 | else | - |
| 365 | break; never executed: break; | 0 |
| 366 | } | - |
| 367 | | - |
| 368 | if (which > directory_list_offset || (which < -directory_list_offset) || (directory_list_offset == 0 && which == 0))| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 4 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 4 times by 1 test |
| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 3 times by 1 test |
| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-4 |
| 369 | { | - |
| 370 | pushd_error (directory_list_offset, which_word ? which_word : ""); | - |
| 371 | return (EXECUTION_FAILURE);executed 3 times by 1 test: return (1); | 3 |
| 372 | } | - |
| 373 | | - |
| 374 | | - |
| 375 | if ((direction == '+' && which == 0) ||| TRUE | evaluated 3 times by 1 test | | FALSE | never evaluated |
| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 2 times by 1 test |
| 0-3 |
| 376 | (direction == '-' && which == directory_list_offset))| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-2 |
| 377 | { | - |
| 378 | i = ((flags & NOCD) == 0) ? cd_to_string (pushd_directory_list[directory_list_offset - 1])| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-1 |
| 379 | : EXECUTION_SUCCESS; | - |
| 380 | if (i != EXECUTION_SUCCESS)| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 381 | return (i); never executed: return (i); | 0 |
| 382 | free (pushd_directory_list[--directory_list_offset]); | - |
| 383 | }executed 1 time by 1 test: end of block | 1 |
| 384 | else | - |
| 385 | { | - |
| 386 | | - |
| 387 | | - |
| 388 | | - |
| 389 | i = (direction == '+') ? directory_list_offset - which : which;| TRUE | evaluated 2 times by 1 test | | FALSE | never evaluated |
| 0-2 |
| 390 | if (i < 0 || i > directory_list_offset)| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 2 times by 1 test |
| 0-2 |
| 391 | { | - |
| 392 | pushd_error (directory_list_offset, which_word ? which_word : ""); | - |
| 393 | return (EXECUTION_FAILURE); never executed: return (1); | 0 |
| 394 | } | - |
| 395 | free (pushd_directory_list[i]); | - |
| 396 | directory_list_offset--; | - |
| 397 | | - |
| 398 | | - |
| 399 | for (; i < directory_list_offset; i++)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| 2 |
| 400 | pushd_directory_list[i] = pushd_directory_list[i + 1];executed 2 times by 1 test: pushd_directory_list[i] = pushd_directory_list[i + 1]; | 2 |
| 401 | }executed 2 times by 1 test: end of block | 2 |
| 402 | | - |
| 403 | dirs_builtin ((WORD_LIST *)NULL); | - |
| 404 | return (EXECUTION_SUCCESS);executed 3 times by 1 test: return (0); | 3 |
| 405 | } | - |
| 406 | | - |
| 407 | | - |
| 408 | int | - |
| 409 | dirs_builtin (list) | - |
| 410 | WORD_LIST *list; | - |
| 411 | { | - |
| 412 | int flags, desired_index, index_flag, vflag; | - |
| 413 | intmax_t i; | - |
| 414 | char *temp, *w; | - |
| 415 | | - |
| 416 | CHECK_HELPOPT (list); never executed: __result = (((const unsigned char *) (const char *) ( ((list)->word->word) ))[3] - __s2[3]); never executed: end of block never executed: end of block never executed: __result = (((const unsigned char *) (const char *) ( "--help" ))[3] - __s2[3]); never executed: end of block never executed: end of block never executed: return (258); | TRUE | evaluated 17 times by 1 test | | FALSE | evaluated 22 times by 1 test |
| TRUE | evaluated 17 times by 1 test | | FALSE | never evaluated |
| TRUE | evaluated 10 times by 1 test | | FALSE | evaluated 7 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 10 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-22 |
| 417 | for (flags = vflag = index_flag = 0, desired_index = -1, w = ""; list; list = list->next)| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 37 times by 1 test |
| 18-37 |
| 418 | { | - |
| 419 | if (ISOPTION (list->word->word, 'l'))| TRUE | evaluated 11 times by 1 test | | FALSE | evaluated 7 times by 1 test |
| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 10 times by 1 test |
| TRUE | evaluated 1 time by 1 test | | FALSE | never evaluated |
| 0-11 |
| 420 | { | - |
| 421 | flags |= LONGFORM; | - |
| 422 | }executed 1 time by 1 test: end of block | 1 |
| 423 | else if (ISOPTION (list->word->word, 'c'))| TRUE | evaluated 10 times by 1 test | | FALSE | evaluated 7 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 8 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | never evaluated |
| 0-10 |
| 424 | { | - |
| 425 | flags |= CLEARSTAK; | - |
| 426 | }executed 2 times by 1 test: end of block | 2 |
| 427 | else if (ISOPTION (list->word->word, 'v'))| TRUE | evaluated 8 times by 1 test | | FALSE | evaluated 7 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 6 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | never evaluated |
| 0-8 |
| 428 | { | - |
| 429 | vflag |= 2; | - |
| 430 | }executed 2 times by 1 test: end of block | 2 |
| 431 | else if (ISOPTION (list->word->word, 'p'))| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 7 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 6 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-7 |
| 432 | { | - |
| 433 | vflag |= 1; | - |
| 434 | } never executed: end of block | 0 |
| 435 | else if (ISOPTION (list->word->word, '-'))| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 7 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 6 times by 1 test |
| TRUE | never evaluated | | FALSE | never evaluated |
| 0-7 |
| 436 | { | - |
| 437 | list = list->next; | - |
| 438 | break; never executed: break; | 0 |
| 439 | } | - |
| 440 | else if (*list->word->word == '+' || *list->word->word == '-')| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 7 times by 1 test |
| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1-7 |
| 441 | { | - |
| 442 | int sign; | - |
| 443 | if (legal_number (w = list->word->word + 1, &i) == 0)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 11 times by 1 test |
| 1-11 |
| 444 | { | - |
| 445 | sh_invalidnum (list->word->word); | - |
| 446 | builtin_usage (); | - |
| 447 | return (EX_USAGE);executed 1 time by 1 test: return (258); | 1 |
| 448 | } | - |
| 449 | sign = (*list->word->word == '+') ? 1 : -1;| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 5 times by 1 test |
| 5-6 |
| 450 | desired_index = get_dirstack_index (i, sign, &index_flag); | - |
| 451 | }executed 11 times by 1 test: end of block | 11 |
| 452 | else | - |
| 453 | { | - |
| 454 | sh_invalidopt (list->word->word); | - |
| 455 | builtin_usage (); | - |
| 456 | return (EX_USAGE);executed 1 time by 1 test: return (258); | 1 |
| 457 | } | - |
| 458 | } | - |
| 459 | | - |
| 460 | if (flags & CLEARSTAK)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 35 times by 1 test |
| 2-35 |
| 461 | { | - |
| 462 | clear_directory_stack (); | - |
| 463 | return (EXECUTION_SUCCESS);executed 2 times by 1 test: return (0); | 2 |
| 464 | } | - |
| 465 | | - |
| 466 | if (index_flag && (desired_index < 0 || desired_index > directory_list_offset))| TRUE | evaluated 11 times by 1 test | | FALSE | evaluated 24 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 9 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 9 times by 1 test |
| 0-24 |
| 467 | { | - |
| 468 | pushd_error (directory_list_offset, w); | - |
| 469 | return (EXECUTION_FAILURE);executed 2 times by 1 test: return (1); | 2 |
| 470 | } | - |
| 471 | | - |
| 472 | #define DIRSTACK_FORMAT(temp) \ | - |
| 473 | (flags & LONGFORM) ? temp : polite_directory_format (temp) | - |
| 474 | | - |
| 475 | | - |
| 476 | if (index_flag == 0 || (index_flag == 1 && desired_index == 0))| TRUE | evaluated 24 times by 1 test | | FALSE | evaluated 9 times by 1 test |
| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 4 times by 1 test |
| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| 2-24 |
| 477 | { | - |
| 478 | temp = get_working_directory ("dirs"); | - |
| 479 | if (temp == 0)| TRUE | never evaluated | | FALSE | evaluated 27 times by 1 test |
| 0-27 |
| 480 | temp = savestring (_("<no current directory>")); never executed: temp = (char *)strcpy (sh_xmalloc((1 + strlen ( dcgettext (((void *)0), "<no current directory>" , 5) )), "./pushd.def", 480), ( dcgettext (((void *)0), "<no current directory>" , 5) )); | 0 |
| 481 | if (vflag & 2)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 26 times by 1 test |
| 1-26 |
| 482 | printf ("%2d %s", 0, DIRSTACK_FORMAT (temp));executed 1 time by 1 test: printf ("%2d %s", 0, (flags & 0x04) ? temp : polite_directory_format (temp)); | 1 |
| 483 | else | - |
| 484 | printf ("%s", DIRSTACK_FORMAT (temp));executed 26 times by 1 test: printf ("%s", (flags & 0x04) ? temp : polite_directory_format (temp)); | 26 |
| 485 | free (temp); | - |
| 486 | if (index_flag)| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 24 times by 1 test |
| 3-24 |
| 487 | { | - |
| 488 | putchar ('\n'); | - |
| 489 | return (sh_chkwrite (EXECUTION_SUCCESS));executed 3 times by 1 test: return (sh_chkwrite (0)); | 3 |
| 490 | } | - |
| 491 | }executed 24 times by 1 test: end of block | 24 |
| 492 | | - |
| 493 | #define DIRSTACK_ENTRY(i) \ | - |
| 494 | (flags & LONGFORM) ? pushd_directory_list[i] \ | - |
| 495 | : polite_directory_format (pushd_directory_list[i]) | - |
| 496 | | - |
| 497 | | - |
| 498 | if (index_flag)| TRUE | evaluated 6 times by 1 test | | FALSE | evaluated 24 times by 1 test |
| 6-24 |
| 499 | { | - |
| 500 | if (vflag & 2)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 5 times by 1 test |
| 1-5 |
| 501 | printf ("%2d %s", directory_list_offset - desired_index,executed 1 time by 1 test: printf ("%2d %s", directory_list_offset - desired_index, (flags & 0x04) ? pushd_directory_list[desired_index] : polite_directory_format (pushd_directory_list[desired_index])); | 1 |
| 502 | DIRSTACK_ENTRY (desired_index));executed 1 time by 1 test: printf ("%2d %s", directory_list_offset - desired_index, (flags & 0x04) ? pushd_directory_list[desired_index] : polite_directory_format (pushd_directory_list[desired_index])); | 1 |
| 503 | else | - |
| 504 | printf ("%s", DIRSTACK_ENTRY (desired_index));executed 5 times by 1 test: printf ("%s", (flags & 0x04) ? pushd_directory_list[desired_index] : polite_directory_format (pushd_directory_list[desired_index])); | 5 |
| 505 | } | - |
| 506 | else | - |
| 507 | for (i = directory_list_offset - 1; i >= 0; i--)| TRUE | evaluated 43 times by 1 test | | FALSE | evaluated 24 times by 1 test |
| 24-43 |
| 508 | if (vflag >= 2)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 41 times by 1 test |
| 2-41 |
| 509 | printf ("\n%2d %s", directory_list_offset - (int)i, DIRSTACK_ENTRY (i));executed 2 times by 1 test: printf ("\n%2d %s", directory_list_offset - (int)i, (flags & 0x04) ? pushd_directory_list[i] : polite_directory_format (pushd_directory_list[i])); | 2 |
| 510 | else | - |
| 511 | printf ("%s%s", (vflag & 1) ? "\n" : " ", DIRSTACK_ENTRY (i));executed 41 times by 1 test: printf ("%s%s", (vflag & 1) ? "\n" : " ", (flags & 0x04) ? pushd_directory_list[i] : polite_directory_format (pushd_directory_list[i])); | 41 |
| 512 | | - |
| 513 | putchar ('\n'); | - |
| 514 | | - |
| 515 | return (sh_chkwrite (EXECUTION_SUCCESS));executed 30 times by 1 test: return (sh_chkwrite (0)); | 30 |
| 516 | } | - |
| 517 | | - |
| 518 | static void | - |
| 519 | pushd_error (offset, arg) | - |
| 520 | int offset; | - |
| 521 | char *arg; | - |
| 522 | { | - |
| 523 | if (offset == 0)| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 6 times by 1 test |
| 1-6 |
| 524 | builtin_error (_("directory stack empty"));executed 1 time by 1 test: builtin_error ( dcgettext (((void *)0), "directory stack empty" , 5) ); | 1 |
| 525 | else | - |
| 526 | sh_erange (arg, _("directory stack index"));executed 6 times by 1 test: sh_erange (arg, dcgettext (((void *)0), "directory stack index" , 5) ); | 6 |
| 527 | } | - |
| 528 | | - |
| 529 | static void | - |
| 530 | clear_directory_stack () | - |
| 531 | { | - |
| 532 | register int i; | - |
| 533 | | - |
| 534 | for (i = 0; i < directory_list_offset; i++)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| 2 |
| 535 | free (pushd_directory_list[i]);executed 2 times by 1 test: sh_xfree((pushd_directory_list[i]), "./pushd.def", 535); | 2 |
| 536 | directory_list_offset = 0; | - |
| 537 | }executed 2 times by 1 test: end of block | 2 |
| 538 | | - |
| 539 | | - |
| 540 | | - |
| 541 | | - |
| 542 | static int | - |
| 543 | cd_to_string (name) | - |
| 544 | char *name; | - |
| 545 | { | - |
| 546 | WORD_LIST *tlist; | - |
| 547 | WORD_LIST *dir; | - |
| 548 | int result; | - |
| 549 | | - |
| 550 | dir = make_word_list (make_word (name), NULL); | - |
| 551 | tlist = make_word_list (make_word ("--"), dir); | - |
| 552 | result = cd_builtin (tlist); | - |
| 553 | dispose_words (tlist); | - |
| 554 | return (result);executed 4 times by 1 test: return (result); | 4 |
| 555 | } | - |
| 556 | | - |
| 557 | static int | - |
| 558 | change_to_temp (temp) | - |
| 559 | char *temp; | - |
| 560 | { | - |
| 561 | int tt; | - |
| 562 | | - |
| 563 | tt = temp ? cd_to_string (temp) : EXECUTION_FAILURE;| TRUE | evaluated 3 times by 1 test | | FALSE | never evaluated |
| 0-3 |
| 564 | | - |
| 565 | if (tt == EXECUTION_SUCCESS)| TRUE | evaluated 3 times by 1 test | | FALSE | never evaluated |
| 0-3 |
| 566 | dirs_builtin ((WORD_LIST *)NULL);executed 3 times by 1 test: dirs_builtin ((WORD_LIST *) ((void *)0) ); | 3 |
| 567 | | - |
| 568 | return (tt);executed 3 times by 1 test: return (tt); | 3 |
| 569 | } | - |
| 570 | | - |
| 571 | static void | - |
| 572 | add_dirstack_element (dir) | - |
| 573 | char *dir; | - |
| 574 | { | - |
| 575 | if (directory_list_offset == directory_list_size)| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 5 times by 1 test |
| 2-5 |
| 576 | pushd_directory_list = strvec_resize (pushd_directory_list, directory_list_size += 10);executed 2 times by 1 test: pushd_directory_list = strvec_resize (pushd_directory_list, directory_list_size += 10); | 2 |
| 577 | pushd_directory_list[directory_list_offset++] = dir; | - |
| 578 | }executed 7 times by 1 test: end of block | 7 |
| 579 | | - |
| 580 | static int | - |
| 581 | get_dirstack_index (ind, sign, indexp) | - |
| 582 | intmax_t ind; | - |
| 583 | int sign, *indexp; | - |
| 584 | { | - |
| 585 | if (indexp)| TRUE | evaluated 18 times by 1 test | | FALSE | evaluated 1 time by 1 test |
| 1-18 |
| 586 | *indexp = sign > 0 ? 1 : 2;executed 18 times by 1 test: *indexp = sign > 0 ? 1 : 2; | TRUE | evaluated 10 times by 1 test | | FALSE | evaluated 8 times by 1 test |
| 8-18 |
| 587 | | - |
| 588 | | - |
| 589 | | - |
| 590 | if (ind == 0 && sign > 0)| TRUE | evaluated 5 times by 1 test | | FALSE | evaluated 14 times by 1 test |
| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| 2-14 |
| 591 | return 0;executed 3 times by 1 test: return 0; | 3 |
| 592 | else if (ind == directory_list_offset)| TRUE | evaluated 4 times by 1 test | | FALSE | evaluated 12 times by 1 test |
| 4-12 |
| 593 | { | - |
| 594 | if (indexp)| TRUE | evaluated 4 times by 1 test | | FALSE | never evaluated |
| 0-4 |
| 595 | *indexp = sign > 0 ? 2 : 1;executed 4 times by 1 test: *indexp = sign > 0 ? 2 : 1; | TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 2 times by 1 test |
| 2-4 |
| 596 | return 0;executed 4 times by 1 test: return 0; | 4 |
| 597 | } | - |
| 598 | else if (ind >= 0 && ind <= directory_list_offset)| TRUE | evaluated 12 times by 1 test | | FALSE | never evaluated |
| TRUE | evaluated 9 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| 0-12 |
| 599 | return (sign > 0 ? directory_list_offset - ind : ind);executed 9 times by 1 test: return (sign > 0 ? directory_list_offset - ind : ind); | 9 |
| 600 | else | - |
| 601 | return -1;executed 3 times by 1 test: return -1; | 3 |
| 602 | } | - |
| 603 | | - |
| 604 | | - |
| 605 | char * | - |
| 606 | get_dirstack_from_string (string) | - |
| 607 | char *string; | - |
| 608 | { | - |
| 609 | int ind, sign, index_flag; | - |
| 610 | intmax_t i; | - |
| 611 | | - |
| 612 | sign = 1; | - |
| 613 | if (*string == '-' || *string == '+')| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 4 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 4 times by 1 test |
| 0-4 |
| 614 | { | - |
| 615 | sign = (*string == '-') ? -1 : 1;| TRUE | evaluated 3 times by 1 test | | FALSE | never evaluated |
| 0-3 |
| 616 | string++; | - |
| 617 | }executed 3 times by 1 test: end of block | 3 |
| 618 | if (legal_number (string, &i) == 0)| TRUE | never evaluated | | FALSE | evaluated 7 times by 1 test |
| 0-7 |
| 619 | return ((char *)NULL); never executed: return ((char *) ((void *)0) ); | 0 |
| 620 | | - |
| 621 | index_flag = 0; | - |
| 622 | ind = get_dirstack_index (i, sign, &index_flag); | - |
| 623 | if (index_flag && (ind < 0 || ind > directory_list_offset))| TRUE | evaluated 7 times by 1 test | | FALSE | never evaluated |
| TRUE | evaluated 1 time by 1 test | | FALSE | evaluated 6 times by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 6 times by 1 test |
| 0-7 |
| 624 | return ((char *)NULL);executed 1 time by 1 test: return ((char *) ((void *)0) ); | 1 |
| 625 | if (index_flag == 0 || (index_flag == 1 && ind == 0))| TRUE | never evaluated | | FALSE | evaluated 6 times by 1 test |
| TRUE | evaluated 3 times by 1 test | | FALSE | evaluated 3 times by 1 test |
| TRUE | evaluated 2 times by 1 test | | FALSE | evaluated 1 time by 1 test |
| 0-6 |
| 626 | return (get_string_value ("PWD"));executed 2 times by 1 test: return (get_string_value ("PWD")); | 2 |
| 627 | else | - |
| 628 | return (pushd_directory_list[ind]);executed 4 times by 1 test: return (pushd_directory_list[ind]); | 4 |
| 629 | } | - |
| 630 | | - |
| 631 | #ifdef INCLUDE_UNUSED | - |
| 632 | char * | - |
| 633 | get_dirstack_element (ind, sign) | - |
| 634 | intmax_t ind; | - |
| 635 | int sign; | - |
| 636 | { | - |
| 637 | int i; | - |
| 638 | | - |
| 639 | i = get_dirstack_index (ind, sign, (int *)NULL); | - |
| 640 | return (i < 0 || i > directory_list_offset) ? (char *)NULL | - |
| 641 | : pushd_directory_list[i]; | - |
| 642 | } | - |
| 643 | #endif | - |
| 644 | | - |
| 645 | void | - |
| 646 | set_dirstack_element (ind, sign, value) | - |
| 647 | intmax_t ind; | - |
| 648 | int sign; | - |
| 649 | char *value; | - |
| 650 | { | - |
| 651 | int i; | - |
| 652 | | - |
| 653 | i = get_dirstack_index (ind, sign, (int *)NULL); | - |
| 654 | if (ind == 0 || i < 0 || i > directory_list_offset)| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| TRUE | never evaluated | | FALSE | evaluated 1 time by 1 test |
| 0-1 |
| 655 | return; never executed: return; | 0 |
| 656 | free (pushd_directory_list[i]); | - |
| 657 | pushd_directory_list[i] = savestring (value); | - |
| 658 | }executed 1 time by 1 test: end of block | 1 |
| 659 | | - |
| 660 | WORD_LIST * | - |
| 661 | get_directory_stack (flags) | - |
| 662 | int flags; | - |
| 663 | { | - |
| 664 | register int i; | - |
| 665 | WORD_LIST *ret; | - |
| 666 | char *d, *t; | - |
| 667 | | - |
| 668 | for (ret = (WORD_LIST *)NULL, i = 0; i < directory_list_offset; i++)| TRUE | evaluated 60 times by 1 test | | FALSE | evaluated 27 times by 1 test |
| 27-60 |
| 669 | { | - |
| 670 | d = (flags&1) ? polite_directory_format (pushd_directory_list[i])| TRUE | never evaluated | | FALSE | evaluated 60 times by 1 test |
| 0-60 |
| 671 | : pushd_directory_list[i]; | - |
| 672 | ret = make_word_list (make_word (d), ret); | - |
| 673 | }executed 60 times by 1 test: end of block | 60 |
| 674 | | - |
| 675 | d = get_working_directory ("dirstack"); | - |
| 676 | i = 0; | - |
| 677 | if (d == 0)| TRUE | never evaluated | | FALSE | evaluated 27 times by 1 test |
| 0-27 |
| 678 | d = "."; never executed: d = "."; | 0 |
| 679 | else | - |
| 680 | { | - |
| 681 | t = (flags&1) ? polite_directory_format (d) : d;| TRUE | never evaluated | | FALSE | evaluated 27 times by 1 test |
| 0-27 |
| 682 | | - |
| 683 | | - |
| 684 | | - |
| 685 | if (t != d)| TRUE | never evaluated | | FALSE | evaluated 27 times by 1 test |
| 0-27 |
| 686 | { | - |
| 687 | free (d); | - |
| 688 | d = t; | - |
| 689 | } never executed: end of block | 0 |
| 690 | else | - |
| 691 | i = 1;executed 27 times by 1 test: i = 1; | 27 |
| 692 | } | - |
| 693 | ret = make_word_list (make_word (d), ret); | - |
| 694 | if (i)| TRUE | evaluated 27 times by 1 test | | FALSE | never evaluated |
| 0-27 |
| 695 | free (d);executed 27 times by 1 test: sh_xfree((d), "./pushd.def", 695); | 27 |
| 696 | return ret; executed 27 times by 1 test: return ret; | 27 |
| 697 | } | - |
| 698 | | - |
| 699 | #ifdef LOADABLE_BUILTIN | - |
| 700 | char * const dirs_doc[] = { | - |
| 701 | N_("Display the list of currently remembered directories. Directories\n\ | - |
| 702 | find their way onto the list with the `pushd' command; you can get\n\ | - |
| 703 | back up through the list with the `popd' command.\n\ | - |
| 704 | \n\ | - |
| 705 | Options:\n\ | - |
| 706 | -c clear the directory stack by deleting all of the elements\n\ | - |
| 707 | -l do not print tilde-prefixed versions of directories relative\n\ | - |
| 708 | to your home directory\n\ | - |
| 709 | -p print the directory stack with one entry per line\n\ | - |
| 710 | -v print the directory stack with one entry per line prefixed\n\ | - |
| 711 | with its position in the stack\n\ | - |
| 712 | \n\ | - |
| 713 | Arguments:\n\ | - |
| 714 | +N Displays the Nth entry counting from the left of the list shown by\n\ | - |
| 715 | dirs when invoked without options, starting with zero.\n\ | - |
| 716 | \n\ | - |
| 717 | -N Displays the Nth entry counting from the right of the list shown by\n\ | - |
| 718 | dirs when invoked without options, starting with zero."), | - |
| 719 | (char *)NULL | - |
| 720 | }; | - |
| 721 | | - |
| 722 | char * const pushd_doc[] = { | - |
| 723 | N_("Adds a directory to the top of the directory stack, or rotates\n\ | - |
| 724 | the stack, making the new top of the stack the current working\n\ | - |
| 725 | directory. With no arguments, exchanges the top two directories.\n\ | - |
| 726 | \n\ | - |
| 727 | Options:\n\ | - |
| 728 | -n Suppresses the normal change of directory when adding\n\ | - |
| 729 | directories to the stack, so only the stack is manipulated.\n\ | - |
| 730 | \n\ | - |
| 731 | Arguments:\n\ | - |
| 732 | +N Rotates the stack so that the Nth directory (counting\n\ | - |
| 733 | from the left of the list shown by `dirs', starting with\n\ | - |
| 734 | zero) is at the top.\n\ | - |
| 735 | \n\ | - |
| 736 | -N Rotates the stack so that the Nth directory (counting\n\ | - |
| 737 | from the right of the list shown by `dirs', starting with\n\ | - |
| 738 | zero) is at the top.\n\ | - |
| 739 | \n\ | - |
| 740 | dir Adds DIR to the directory stack at the top, making it the\n\ | - |
| 741 | new current working directory.\n\ | - |
| 742 | \n\ | - |
| 743 | The `dirs' builtin displays the directory stack."), | - |
| 744 | (char *)NULL | - |
| 745 | }; | - |
| 746 | | - |
| 747 | char * const popd_doc[] = { | - |
| 748 | N_("Removes entries from the directory stack. With no arguments, removes\n\ | - |
| 749 | the top directory from the stack, and changes to the new top directory.\n\ | - |
| 750 | \n\ | - |
| 751 | Options:\n\ | - |
| 752 | -n Suppresses the normal change of directory when removing\n\ | - |
| 753 | directories from the stack, so only the stack is manipulated.\n\ | - |
| 754 | \n\ | - |
| 755 | Arguments:\n\ | - |
| 756 | +N Removes the Nth entry counting from the left of the list\n\ | - |
| 757 | shown by `dirs', starting with zero. For example: `popd +0'\n\ | - |
| 758 | removes the first directory, `popd +1' the second.\n\ | - |
| 759 | \n\ | - |
| 760 | -N Removes the Nth entry counting from the right of the list\n\ | - |
| 761 | shown by `dirs', starting with zero. For example: `popd -0'\n\ | - |
| 762 | removes the last directory, `popd -1' the next to last.\n\ | - |
| 763 | \n\ | - |
| 764 | The `dirs' builtin displays the directory stack."), | - |
| 765 | (char *)NULL | - |
| 766 | }; | - |
| 767 | | - |
| 768 | struct builtin pushd_struct = { | - |
| 769 | "pushd", | - |
| 770 | pushd_builtin, | - |
| 771 | BUILTIN_ENABLED, | - |
| 772 | pushd_doc, | - |
| 773 | "pushd [+N | -N] [-n] [dir]", | - |
| 774 | 0 | - |
| 775 | }; | - |
| 776 | | - |
| 777 | struct builtin popd_struct = { | - |
| 778 | "popd", | - |
| 779 | popd_builtin, | - |
| 780 | BUILTIN_ENABLED, | - |
| 781 | popd_doc, | - |
| 782 | "popd [+N | -N] [-n]", | - |
| 783 | 0 | - |
| 784 | }; | - |
| 785 | | - |
| 786 | struct builtin dirs_struct = { | - |
| 787 | "dirs", | - |
| 788 | dirs_builtin, | - |
| 789 | BUILTIN_ENABLED, | - |
| 790 | dirs_doc, | - |
| 791 | "dirs [-clpv] [+N] [-N]", | - |
| 792 | 0 | - |
| 793 | }; | - |
| 794 | #endif /* LOADABLE_BUILTIN */ | - |
| 795 | | - |
| 796 | #endif /* PUSHD_AND_POPD */ | - |
| | |