Changeset 86cf96d in mainline
- Timestamp:
- 2015-04-29T12:40:14Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e3811c9
- Parents:
- dcba819
- git-author:
- Luka Strižić <luka@…> (2015-04-29 12:40:14)
- git-committer:
- Jakub Jermar <jakub@…> (2015-04-29 12:40:14)
- Location:
- uspace/app/bdsh/cmds/modules
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/cat/cat.c
rdcba819 r86cf96d 324 324 argc = cli_count_args(argv); 325 325 326 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {326 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 327 327 c = getopt_long(argc, argv, "xhvmH:t:b:s:n", long_options, &opt_ind); 328 328 switch (c) { -
uspace/app/bdsh/cmds/modules/cmp/cmp.c
rdcba819 r86cf96d 130 130 argc = cli_count_args(argv); 131 131 132 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {132 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 133 133 c = getopt_long(argc, argv, "hv", long_options, &opt_ind); 134 134 switch (c) { -
uspace/app/bdsh/cmds/modules/cp/cp.c
rdcba819 r86cf96d 457 457 argc = cli_count_args(argv); 458 458 459 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {459 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 460 460 c = getopt_long(argc, argv, "hvVfirb:", long_options, &opt_ind); 461 461 switch (c) { -
uspace/app/bdsh/cmds/modules/ls/ls.c
rdcba819 r86cf96d 362 362 argc = cli_count_args(argv); 363 363 364 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {364 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 365 365 c = getopt_long(argc, argv, "hur", long_options, &opt_ind); 366 366 switch (c) { -
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
rdcba819 r86cf96d 173 173 argc = cli_count_args(argv); 174 174 175 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {175 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 176 176 c = getopt_long(argc, argv, "pvhVfm:", long_options, &opt_ind); 177 177 switch (c) { -
uspace/app/bdsh/cmds/modules/mkfile/mkfile.c
rdcba819 r86cf96d 126 126 argc = cli_count_args(argv); 127 127 128 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {128 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 129 129 c = getopt_long(argc, argv, "ps:h", long_options, &opt_ind); 130 130 switch (c) { -
uspace/app/bdsh/cmds/modules/mount/mount.c
rdcba819 r86cf96d 117 117 argc = cli_count_args(argv); 118 118 119 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {119 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 120 120 c = getopt_long(argc, argv, "i:h", long_options, &opt_ind); 121 121 switch (c) { -
uspace/app/bdsh/cmds/modules/rm/rm.c
rdcba819 r86cf96d 261 261 } 262 262 263 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {263 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 264 264 c = getopt_long(argc, argv, "hvrfs", long_options, &opt_ind); 265 265 switch (c) { -
uspace/app/bdsh/cmds/modules/touch/touch.c
rdcba819 r86cf96d 90 90 DIR *dirp; 91 91 92 for (c = 0, opt ind = 0, longind = 0; c != -1; ) {92 for (c = 0, optreset = 1, optind = 0, longind = 0; c != -1; ) { 93 93 c = getopt_long(argc, argv, "c", long_options, &longind); 94 94 switch (c) {
Note:
See TracChangeset
for help on using the changeset viewer.