Message to the person responsible for the site: they should use code blocks instead of images for their code. I say this because I can't read the text inside the images from mobile. It's way too small.
Marcel the Shell
11–20 of 209 posts
Re: Marcel the Shell
#12How does this compare to nushell? I am in the market to learn something other than bash and right now nushell seems like the best candidate.
Re: Marcel the Shell
#13Message to the person responsible for the site: they should use code blocks instead of images for their code. I say this because I can't read the text inside the images from mobile. It's way too small.
I need to revise those, and images seemed like the way to get colorization right. I'll try to figure out how to do it with code blocks, it will hopefully be more maintainable. Cutting/pasting images is ridiculous.
Re: Marcel the Shell
#14How does this compare to nushell? I am in the market to learn something other than bash and right now nushell seems like the best candidate.
Marcel is python-based. The nushell guys have had to invent a lot of language. By basing marcel on python, I don't have to invent language. Any logic to be added is expressed in python. E.g, do a recursive listing of files and find those that changed in the last 3 days:
ls -fr | select (f: now() - f.mtime()
The stuff inside the parens is a python function, applied to a File f, piped in from ls. (Marcel lets you omit "lambda".)Lots of marcel examples here: https://marceltheshell.org
Re: Marcel the Shell
#15How does this compare to nushell? I am in the market to learn something other than bash and right now nushell seems like the best candidate.
weird to say, but powershell should also be on your list.
Been able to give poweshell commands in FOIA litigation and its power is on full display with one liners where it's hard for a gov agency to say no to something so simple.
Re: Marcel the Shell
#16My name is Marcel and I’m partially a shell, as you can see from my body.
Re: Marcel the Shell
#17Hate to be "that guy", but it's kinda sad that they pretty much stole the name... especially when the (fantastic!) movie with the original character came out recently in 2021. https://youtu.be/k98Afd7Nf3Y
Re: Marcel the Shell
#18How does this compare to nushell? I am in the market to learn something other than bash and right now nushell seems like the best candidate.
Honestly any interactive shell + unix tools + any scripting language you feel comfortable with should cover the majority of things you may want to do on the command line.
Re: Marcel the Shell
#19My name is Marcel and I’m partially a shell, as you can see from my body.
When I watched that in cinema I couldn't help divert my attention to a family of two adults and two children in the rows ahead of me who left a third the way through. Wonder what they were expecting.
Re: Marcel the Shell
#20My name is Marcel and I’m partially a shell, as you can see from my body.
When I watched that in cinema I couldn't help divert my attention to a family of two adults and two children in the rows ahead of me who left a third the way through. Wonder what they were expecting.