Downloads:
5,099
Downloads of v 0.101.0:
2
Last Update:
23 Dec 2024
Published Date:
23 Dec 2024
Package Maintainer(s):
Software Author(s):
- Jonathan Turner
- Yehuda Katz
- Andrés Robalino
- Nushell Contributors
Tags:
nushell shell cliNushell - A new type of shell (Portable)
(Waiting for Maintainer to take corrective action)
- 1
- 2
- 3
0.101.0 | Updated: 23 Dec 2024
Downloads:
5,099
Downloads of v 0.101.0:
2
Published:
23 Dec 2024
Maintainer(s):
Software Author(s):
- Jonathan Turner
- Yehuda Katz
- Andrés Robalino
- Nushell Contributors
Nushell - A new type of shell (Portable) 0.101.0
(Waiting for Maintainer to take corrective action)
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Jonathan Turner, Yehuda Katz, Andrés Robalino, Nushell Contributors. The inclusion of Jonathan Turner, Yehuda Katz, Andrés Robalino, Nushell Contributors trademark(s), if any, upon this webpage is solely to identify Jonathan Turner, Yehuda Katz, Andrés Robalino, Nushell Contributors goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
Nushell, or Nu for short, is a new shell that takes a modern, structured approach to your commandline. It works
seamlessly with the data from your filesystem, operating system, and a growing number of file formats to make it easy
to build powerful commandline pipelines.
Features
- Control your system with powerful pipelines Pipelines let you command your system like never before. Your system
belongs to you, and it awaits your command - Everything is data Rather than having the need to remember all the parameters to all the commands, we can just use
the same, regardless of where it came from - Powerful Plugins Nu can't come with everything you might want to do with it, so you can extend using its powerful
plugin system
Package Parameters
The following package parameter can be set:
/AddToDesktop
- add a desktop shortcuts for Nu Shell. By default the shortcuts will be added for all users
e.g.choco install nushell.install --package-parameters="/AddToDesktop"
/AddToStartMenu
- add entries to the Start Menu for Koodoo Reader. By default the shortcut will be added for all
users
e.g.choco install nushell.install --package-parameters="/AddToStartMenu"
/User
- where the user parameter is specified any shortcuts created (using/AddToDesktop
or/AddToStartMenu
)
will only be added for the current user
e.g.choco install nushell.install --package-parameters="/AddToDesktop /User"
To have Chocolatey remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades
.
Notes
- Nushell only provides a 64-bit version
- This package is automatically updated using the Chocolatey Automatic Package Update Model (AU).
If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.
MIT License
Copyright (c) 2019 - 2021 Yehuda Katz, Jonathan Turner
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The application has been downloaded from the official distribution and can
be verified by:
1. Go to the binary distribution page
https://github.com/nushell/nushell/releases/tag/0.101.0
and download the archive nu-0.101.0-x86_64-pc-windows-msvc.zip using the relevant link in the
assets section on the page.
Alternatively the archive can be downloaded directly from
https://github.com/nushell/nushell/releases/download/0.101.0/nu-0.101.0-x86_64-pc-windows-msvc.zip
2. The archive can be validated by comparing checksums
- Use powershell function 'Get-Filehash' - Get-Filehash -algorithm sha256 nu-0.101.0-x86_64-pc-windows-msvc.zip
- Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f nu-0.101.0-x86_64-pc-windows-msvc.zip
File: nu-0.101.0-x86_64-pc-windows-msvc.zip
Type: sha256
Checksum: E2EB868D6FE97D4E2B43049F34047DF43774B3F7BE729CC7B84DDB0F0521B9AB
Contents of file LICENSE.txt is obtained from https://github.com/nushell/nushell/blob/main/LICENSE
$ErrorActionPreference = 'Stop'
$link = 'Nu Shell.lnk'
$desktop = [Environment]::GetFolderPath('Desktop')
$commonDesktop = [Environment]::GetFolderPath('CommonDesktopDirectory')
$startMenu = [Environment]::GetFolderPath('StartMenu')
$commonStartMenu = [Environment]::GetFolderPath('CommonStartMenu')
$paths = @(
(Join-Path $desktop $link),
(Join-Path $commonDesktop $link),
(Join-Path $startMenu $link),
(Join-Path $commonStartMenu $link)
)
$paths.GetEnumerator() | ForEach-Object {
if (Test-Path -Path $_) {
Remove-Item $_ -ErrorAction SilentlyContinue -Force | Out-Null
}
}
md5: FBABE0615A927B23E10096F3275AFD7C | sha1: FA39C021AF5AC71ED116B761F4FB1810E84BC6E6 | sha256: E2EB868D6FE97D4E2B43049F34047DF43774B3F7BE729CC7B84DDB0F0521B9AB | sha512: 4C8DBC3DC72CCCDC70C3C43BFA1B18252C260ABD07CC068638C610707B7D6D919AEB2DFD1520DFF15E671062AE96C98F67EE1B1AB93B029C6809C444029CCCF8
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
Copyright 2019-2024 Yehuda Katz, Jonathan Turner
This package has no dependencies.
Ground Rules:
- This discussion is only about Nushell - A new type of shell (Portable) and the Nushell - A new type of shell (Portable) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Nushell - A new type of shell (Portable), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
dgalbraith (maintainer) on 23 Dec 2024 04:18:38 +00:00:
User 'dgalbraith' (maintainer) submitted package.
chocolatey-ops (reviewer) on 23 Dec 2024 04:51:55 +00:00:
nushell.portable has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
Notes
Notes typically flag things for both you and the reviewer to go over. Sometimes this is the use of things that may or may not be necessary given the constraints of what you are trying to do and/or are harder for automation to flag for other reasons. Items found in Notes might be Requirements depending on the context. A package version can be approved without addressing Note comments.
chocolatey-ops (reviewer) on 23 Dec 2024 05:03:10 +00:00:
nushell.portable has failed automated package testing (verification).
Please visit https://gist.github.com/choco-bot/1497f06b8ef7bad1ff4dc301918d145e for details.
The package status will be changed and will be waiting on your next actions.