-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved the supported command list to the documents directory.
- Loading branch information
Showing
2 changed files
with
48 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Command (Applet) List | ||
|Command (Applet) Name | Description| | ||
|:--|:--| | ||
| cat | Concatenate files and print on the standard output| | ||
| chroot | Run command or interactive shell with special root directory| | ||
| echo | Display a line of text| | ||
|fakemovie | Adds a video playback button to the image| | ||
| false | Do nothing. Return unsuccess(1)| | ||
| ghrdc | GitHub Relase Download Counter| | ||
| ischroot| Detect if running in a chroot| | ||
| mbsh | Mimix Box Shell (In development)| | ||
| mkdir | Make directories| | ||
| mkfifo | Make FIFO (Named pipe)| | ||
| mv | Rename SOURCE to DESTINATION, or move SOURCE(s) to DIRECTORY| | ||
| path | Manipulate filename path| | ||
| rm | Remove file(s) or directory(s)| | ||
| rmdir | Remove directory| | ||
| serial | Rename the file to the name with a serial number| | ||
| sh | Mimix Box Shell (In development)| | ||
| touch | Update the access and modification times of each FILE to the current time| | ||
| true | Do nothing. Return success(0)| | ||
| which | Returns the file path which would be executed in the current environment| | ||
|
||
If you want to see the list of supported commands on the terminal, use the --list option. | ||
|
||
``` | ||
$ mimixbox --list | ||
cat - Concatenate files and print on the standard output | ||
chroot - Run command or interactive shell with special root directory | ||
echo - Display a line of text | ||
fakemovie - Adds a video playback button to the image | ||
false - Do nothing. Return unsuccess(1) | ||
ghrdc - GitHub Relase Download Counter | ||
ischroot - Detect if running in a chroot | ||
mbsh - Mimix Box Shell | ||
mkdir - Make directories | ||
mkfifo - Make FIFO (named pipe) | ||
mv - Rename SOURCE to DESTINATION, or move SOURCE(s) to DIRECTORY | ||
path - Manipulate filename path | ||
rm - Remove file(s) or directory(s) | ||
rmdir - Remove directory | ||
serial - Rename the file to the name with a serial number | ||
sh - Mimix Box Shell | ||
touch - Update the access and modification times of each FILE to the current time | ||
true - Do nothing. Return success(0) | ||
which - Returns the file path which would be executed in the current environment | ||
``` |