Thursday, June 4, 2020

Show HN: Marcel – A Modern Shell https://ift.tt/3gViHSc

Show HN: Marcel – A Modern Shell Marcel is a shell. It is intended to be familiar to anyone who knows bash, but it emphasizes piping objects between commands, instead of strings. E.g., to explore the current directory recursively and find files changed in the past day: ls -r | select (file: now() - file.mtime < days(1)) Marcel is designed for interactive use. Python would be a fine scripting language if the integration with shell commands were better. So I made marcel's capabilities available as a module, marcel.api. The integration is extremely clean, (IMHO). To do the above example in Python: from marcel.api import * for file in ls(recursive=True) | select(lambda file: now() - file.mtime < days(1)): print(file) Check it out here: https://github.com/geophile/marcel. June 5, 2020 at 02:12AM

No comments:

Post a Comment

Show HN: Two unnecessary playgrounds – C# and ZX Spectrum in the browser https://ift.tt/9F6gQLU

Show HN: Two unnecessary playgrounds – C# and ZX Spectrum in the browser C# playground https://ift.tt/kOgsNPf ZX-Spectrum playground https:/...