We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We use built-in clojure reader to parse the command mode, but it does not accept some shell forms.
Possible approaches:
Interesting inspiration might be Racket, since it is so flexible defining new languages.
Current limitations I am aware of:
ping 8.8.8.8
ping "8.8.8.8"
ls *.{cljc,clj}
ls (expand "*.{cljc,clj}")
vim ~/.closhrc
git clone git@github.com:dundalek/closh.git
echo $USER/$DISPLAY
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We use built-in clojure reader to parse the command mode, but it does not accept some shell forms.
Possible approaches:
Interesting inspiration might be Racket, since it is so flexible defining new languages.
Current limitations I am aware of:
replace
ping 8.8.8.8
with
ping "8.8.8.8"
replace
ls *.{cljc,clj}
with
ls (expand "*.{cljc,clj}")
e.g.
vim ~/.closhrc
git clone git@github.com:dundalek/closh.git
echo $USER/$DISPLAY
The text was updated successfully, but these errors were encountered: