-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] More built-in commands #215
Comments
On #185 I added |
I'm still thinking about that ORM style you suggested. To make such a nice way to compose commands would be a game changer |
I think that we need to define built-in should be one shot |
we should also add |
I think that the |
The ticket is not yet closed as the topic was to add more builtin commands and there was a PR linked that doesn't involve that. |
Oh sorry @Mte90, I mistook it for a different issue |
* feat(builtin): `mv` builtin Ref: #215 * fix: run tests in `/temp` dir create file in `/temp` dir then remove it after the test is done * rename variables * fix: add `mv` to the know keyword list * fix: remove exit * feat: parse command moddifiers * fix: use unsafe * fix: use shorter failed syntax * fix: swap back silent values * fix: return syntax result
RIght now we are missing:
I think that we can add Maybe @MuhamedMagdi do you want to look on these? |
I'm currently working on |
For that one I think that we have to wait for @Ph0enixKM. |
This issue is about implementing the following commands:
cd
(cd path: Text
->cd path
) failable: directory does not existmv
(mv a: Text, b: Text
->mv a b
) failable: no permissionsrm
(rm path: Text
->rm -rf path
) failable: no permissions / file does not exitsexit
(exit c: Num
exit c
)The text was updated successfully, but these errors were encountered: