Changeset 09ab0a9a in mainline for uspace/app/bdsh/cmds/modules
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- uspace/app/bdsh/cmds/modules
- Files:
-
- 39 edited
-
cat/cat.c (modified) (2 diffs)
-
cat/cat.h (modified) (1 diff)
-
cat/entry.h (modified) (1 diff)
-
cmp/cmp.h (modified) (1 diff)
-
cmp/entry.h (modified) (1 diff)
-
cp/cp.c (modified) (1 diff)
-
cp/cp.h (modified) (1 diff)
-
cp/entry.h (modified) (1 diff)
-
echo/echo.c (modified) (1 diff)
-
echo/echo.h (modified) (1 diff)
-
echo/entry.h (modified) (1 diff)
-
kcon/entry.h (modified) (1 diff)
-
kcon/kcon.h (modified) (1 diff)
-
ls/entry.h (modified) (1 diff)
-
ls/ls.c (modified) (1 diff)
-
mkdir/entry.h (modified) (1 diff)
-
mkdir/mkdir.c (modified) (2 diffs)
-
mkdir/mkdir.h (modified) (1 diff)
-
mkfile/entry.h (modified) (1 diff)
-
mkfile/mkfile.h (modified) (1 diff)
-
mount/entry.h (modified) (1 diff)
-
mount/mount.c (modified) (2 diffs)
-
mount/mount.h (modified) (1 diff)
-
mv/entry.h (modified) (1 diff)
-
mv/mv.c (modified) (1 diff)
-
mv/mv.h (modified) (1 diff)
-
printf/entry.h (modified) (1 diff)
-
printf/printf.c (modified) (2 diffs)
-
printf/printf.h (modified) (1 diff)
-
pwd/entry.h (modified) (1 diff)
-
rm/entry.h (modified) (1 diff)
-
rm/rm.c (modified) (1 diff)
-
rm/rm.h (modified) (1 diff)
-
sleep/entry.h (modified) (1 diff)
-
sleep/sleep.c (modified) (1 diff)
-
sleep/sleep.h (modified) (1 diff)
-
unmount/entry.h (modified) (1 diff)
-
unmount/unmount.c (modified) (1 diff)
-
unmount/unmount.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/cat/cat.c
rb2aaaa0 r09ab0a9a 336 336 last_char_was_newline = true; 337 337 338 339 338 argc = cli_count_args(argv); 340 339 … … 419 418 return CMD_SUCCESS; 420 419 } 421 -
uspace/app/bdsh/cmds/modules/cat/cat.h
rb2aaaa0 r09ab0a9a 5 5 6 6 #endif /* CAT_H */ 7 -
uspace/app/bdsh/cmds/modules/cat/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* CAT_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/cmp/cmp.h
rb2aaaa0 r09ab0a9a 5 5 6 6 #endif /* CMP_H */ 7 -
uspace/app/bdsh/cmds/modules/cmp/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* CAT_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/cp/cp.c
rb2aaaa0 r09ab0a9a 553 553 return CMD_FAILURE; 554 554 } 555 -
uspace/app/bdsh/cmds/modules/cp/cp.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the cp command, excluding entry points */ 5 5 6 7 6 #endif /* CP_H */ 8 -
uspace/app/bdsh/cmds/modules/cp/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* CP_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/echo/echo.c
rb2aaaa0 r09ab0a9a 64 64 65 65 } 66 -
uspace/app/bdsh/cmds/modules/echo/echo.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the echo command, excluding entry points */ 5 5 6 7 6 #endif /* ECHO_H */ 8 -
uspace/app/bdsh/cmds/modules/echo/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* ECHO_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/kcon/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* KCON_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/kcon/kcon.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the kcon command, excluding entry points */ 5 5 6 7 6 #endif /* KCON_H */ 8 -
uspace/app/bdsh/cmds/modules/ls/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* LS_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/ls/ls.c
rb2aaaa0 r09ab0a9a 428 428 return CMD_SUCCESS; 429 429 } 430 -
uspace/app/bdsh/cmds/modules/mkdir/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* MKDIR_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
rb2aaaa0 r09ab0a9a 60 60 }; 61 61 62 63 62 void help_cmd_mkdir(unsigned int level) 64 63 { … … 224 223 return CMD_SUCCESS; 225 224 } 226 -
uspace/app/bdsh/cmds/modules/mkdir/mkdir.h
rb2aaaa0 r09ab0a9a 5 5 6 6 #endif /* MKDIR_H */ 7 -
uspace/app/bdsh/cmds/modules/mkfile/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* MKFILE_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/mkfile/mkfile.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the mkfile command, excluding entry points */ 5 5 6 7 6 #endif /* MKFILE_H */ 8 -
uspace/app/bdsh/cmds/modules/mount/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* MOUNT_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/mount/mount.c
rb2aaaa0 r09ab0a9a 53 53 { 0, 0, 0, 0 } 54 54 }; 55 56 55 57 56 /* Displays help for mount in various levels */ … … 193 192 return CMD_SUCCESS; 194 193 } 195 -
uspace/app/bdsh/cmds/modules/mount/mount.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the mount command, excluding entry points */ 5 5 6 7 6 #endif /* MOUNT_H */ 8 -
uspace/app/bdsh/cmds/modules/mv/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* MV_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/mv/mv.c
rb2aaaa0 r09ab0a9a 70 70 return CMD_SUCCESS; 71 71 } 72 -
uspace/app/bdsh/cmds/modules/mv/mv.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the mv command, excluding entry points */ 5 5 6 7 6 #endif /* MV_H */ 8 -
uspace/app/bdsh/cmds/modules/printf/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* PRINTF_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/printf/printf.c
rb2aaaa0 r09ab0a9a 55 55 } 56 56 57 58 57 return; 59 58 } … … 105 104 return CMD_SUCCESS; 106 105 } 107 108 106 109 107 /** Prints formatted data. -
uspace/app/bdsh/cmds/modules/printf/printf.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the printf command, excluding entry points */ 5 5 6 7 6 #endif /* PRINTF_H */ 8 -
uspace/app/bdsh/cmds/modules/pwd/entry.h
rb2aaaa0 r09ab0a9a 9 9 10 10 #endif 11 12 -
uspace/app/bdsh/cmds/modules/rm/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* RM_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/rm/rm.c
rb2aaaa0 r09ab0a9a 340 340 return CMD_SUCCESS; 341 341 } 342 -
uspace/app/bdsh/cmds/modules/rm/rm.h
rb2aaaa0 r09ab0a9a 5 5 6 6 #endif /* RM_H */ 7 -
uspace/app/bdsh/cmds/modules/sleep/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* SLEEP_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/sleep/sleep.c
rb2aaaa0 r09ab0a9a 136 136 return CMD_SUCCESS; 137 137 } 138 -
uspace/app/bdsh/cmds/modules/sleep/sleep.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the sleep command, excluding entry points */ 5 5 6 7 6 #endif /* SLEEP_H */ 8 -
uspace/app/bdsh/cmds/modules/unmount/entry.h
rb2aaaa0 r09ab0a9a 7 7 8 8 #endif /* UNMOUNT_ENTRY_H */ 9 -
uspace/app/bdsh/cmds/modules/unmount/unmount.c
rb2aaaa0 r09ab0a9a 75 75 return CMD_SUCCESS; 76 76 } 77 -
uspace/app/bdsh/cmds/modules/unmount/unmount.h
rb2aaaa0 r09ab0a9a 4 4 /* Prototypes for the unmount command, excluding entry points */ 5 5 6 7 6 #endif /* UNMOUNT_H */ 8
Note:
See TracChangeset
for help on using the changeset viewer.
