starman@programming.dev to Free and Open Source Software@beehaw.orgEnglish · 1 year agoNuShell: a very nice shell I found today. What do you think?www.nushell.shexternal-linkmessage-square30fedilinkarrow-up151arrow-down10file-textcross-posted to: linux@programming.dev
arrow-up151arrow-down1external-linkNuShell: a very nice shell I found today. What do you think?www.nushell.shstarman@programming.dev to Free and Open Source Software@beehaw.orgEnglish · 1 year agomessage-square30fedilinkfile-textcross-posted to: linux@programming.dev
minus-squarehallettj@beehaw.orglinkfedilinkEnglisharrow-up2·1 year agoSo maybe this is too much of a kludge, but I happened to see that you can define custom sub-commands to extend existing commands. You can use that to reproduce your familiar command: def "ls -lrt" [] { ls | sort-by modified | reverse } Of course this does not capture the usual composability of those switches.
So maybe this is too much of a kludge, but I happened to see that you can define custom sub-commands to extend existing commands. You can use that to reproduce your familiar command:
def "ls -lrt" [] { ls | sort-by modified | reverse }
Of course this does not capture the usual composability of those switches.