-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sys/shell/cmds: add cat and tee cmds
This patch moves these shell cmds out of the filesystem example into the shell cmds folder. This is done to make them available to all applications.
- Loading branch information
Showing
5 changed files
with
127 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copyright (C) 2018 OTA keys S.A. | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
*/ | ||
|
||
/** | ||
* @ingroup sys_shell_commands | ||
* @{ | ||
* | ||
* @file | ||
* @brief Print the content of a file | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* | ||
* @} | ||
*/ | ||
|
||
#include <stdio.h> | ||
/*#include <string.h>*/ | ||
#include <unistd.h> | ||
#include <fcntl.h> | ||
|
||
#include "shell.h" | ||
|
||
static int _cat(int argc, char **argv) | ||
{ | ||
if (argc < 2) { | ||
printf("Usage: %s <file>\n", argv[0]); | ||
return 1; | ||
} | ||
/* With newlib or picolibc, low-level syscalls are plugged to RIOT vfs | ||
* on native, open/read/write/close/... are plugged to RIOT vfs */ | ||
#if defined(MODULE_NEWLIB) || defined(MODULE_PICOLIBC) | ||
FILE *f = fopen(argv[1], "r"); | ||
if (f == NULL) { | ||
printf("file %s does not exist\n", argv[1]); | ||
return 1; | ||
} | ||
char c; | ||
while (fread(&c, 1, 1, f) != 0) { | ||
putchar(c); | ||
} | ||
fclose(f); | ||
#else | ||
int fd = open(argv[1], O_RDONLY); | ||
if (fd < 0) { | ||
printf("file %s does not exist\n", argv[1]); | ||
return 1; | ||
} | ||
char c; | ||
while (read(fd, &c, 1) != 0) { | ||
putchar(c); | ||
} | ||
close(fd); | ||
#endif | ||
fflush(stdout); | ||
return 0; | ||
} | ||
|
||
SHELL_COMMAND(cat, "print the content of a file", _cat); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Copyright (C) 2018 OTA keys S.A. | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
*/ | ||
|
||
/** | ||
* @ingroup sys_shell_commands | ||
* @{ | ||
* | ||
* @file | ||
* @brief Write a string in a file | ||
* | ||
* @author Vincent Dupont <[email protected]> | ||
* | ||
* @} | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include <unistd.h> | ||
#include <fcntl.h> | ||
|
||
#include "shell.h" | ||
|
||
static int _tee(int argc, char **argv) | ||
{ | ||
if (argc != 3) { | ||
printf("Usage: %s <file> <str>\n", argv[0]); | ||
return 1; | ||
} | ||
|
||
#if defined(MODULE_NEWLIB) || defined(MODULE_PICOLIBC) | ||
FILE *f = fopen(argv[1], "w+"); | ||
if (f == NULL) { | ||
printf("error while trying to create %s\n", argv[1]); | ||
return 1; | ||
} | ||
if (fwrite(argv[2], 1, strlen(argv[2]), f) != strlen(argv[2])) { | ||
puts("Error while writing"); | ||
} | ||
fclose(f); | ||
#else | ||
int fd = open(argv[1], O_RDWR | O_CREAT, 00777); | ||
if (fd < 0) { | ||
printf("error while trying to create %s\n", argv[1]); | ||
return 1; | ||
} | ||
if (write(fd, argv[2], strlen(argv[2])) != (ssize_t)strlen(argv[2])) { | ||
puts("Error while writing"); | ||
} | ||
close(fd); | ||
#endif | ||
return 0; | ||
} | ||
|
||
SHELL_COMMAND(tee, "write a string in a file", _tee); |