Expand description
VFS management commands
Modulesยง
- cat ๐
- cd ๐
- cp ๐
- df ๐
- ls ๐
- mkdir ๐
- mount ๐
- mv ๐
- rm ๐
- scheme ๐
- stat ๐
- touch ๐
- umount ๐
- write ๐
Staticsยง
- SHELL_
CWD ๐ - Current working directory for the chevron shell.
Functionsยง
- cmd_cat
- Print file contents.
- cmd_
cat_ ๐impl - Display file contents. Display file contents or piped input.
- cmd_cd
- Change working directory.
- cmd_
cd_ ๐impl - Change the shell working directory.
- cmd_cp
- Copy file contents.
- cmd_
cp_ ๐impl - cmd_df
- Show filesystem usage.
- cmd_
df_ ๐impl - cmd_ls
- List directory entries.
- cmd_
ls_ ๐impl - List directory contents or mount points.
- cmd_
mkdir - Create directory.
- cmd_
mkdir_ ๐impl - Create a new directory.
- cmd_
mount - Mount filesystems and schemes.
- cmd_
mount_ ๐impl - Performs the cmd mount operation.
- cmd_mv
- Move or rename entry.
- cmd_
mv_ ๐impl - cmd_rm
- Remove file entry.
- cmd_
rm_ ๐impl - Remove a file or directory.
- cmd_
scheme - Manage VFS schemes.
- cmd_
scheme_ ๐impl - List registered schemes.
- cmd_
stat - Show file metadata.
- cmd_
stat_ ๐impl - cmd_
touch - Create empty file.
- cmd_
touch_ ๐impl - Create a new empty file.
- cmd_
umount - Unmount filesystems.
- cmd_
umount_ ๐impl - Performs the cmd umount operation.
- cmd_
write - Write string data into file.
- cmd_
write_ ๐impl - get_cwd
- Read the current working directory.
- normalize_
path ๐ - Collapse
..,.and redundant/in an absolute path. - resolve_
shell_ path - Resolve
pathrelative to the shell CWD. - set_cwd ๐
- Sets cwd.