Downloads:
1,115
Downloads of v 0.7.0:
580
Last Update:
23 Sep 2021
Package Maintainer(s):
Software Author(s):
- Thomas Hurst
Tags:
cw wc foss unix gnu cli shell cmd console terminal- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
cw - Count Words
- 1
- 2
- 3
0.7.0 | Updated: 23 Sep 2021
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,115
Downloads of v 0.7.0:
580
Maintainer(s):
Software Author(s):
- Thomas Hurst
cw - Count Words 0.7.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Thomas Hurst. The inclusion of Thomas Hurst trademark(s), if any, upon this webpage is solely to identify Thomas Hurst goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install cw - Count Words, run the following command from the command line or from PowerShell:
To upgrade cw - Count Words, run the following command from the command line or from PowerShell:
To uninstall cw - Count Words, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download cw --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade cw -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade cw -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install cw
win_chocolatey:
name: cw
version: '0.7.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'cw' do
action :install
source 'INTERNAL REPO URL'
version '0.7.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller cw
{
Name = "cw"
Version = "0.7.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cw':
ensure => '0.7.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator TheCakeIsNaOH on 23 Nov 2024.
Synopsis
-% cw --help
cw 0.5.0
Thomas Hurst <[email protected]>
Count Words - word, line, character and byte count
USAGE:
cw [FLAGS] [OPTIONS] [input]...
FLAGS:
-c, --bytes Count bytes
-m, --chars Count UTF-8 characters instead of bytes
-h, --help Prints help information
-l, --lines Count lines
-L, --max-line-length Count bytes (default) or characters (-m) of the longest line
-V, --version Prints version information
-w, --words Count words
OPTIONS:
--files0-from <files0_from> Read input from the NUL-terminated list of filenames in the given file.
--files-from <files_from> Read input from the newline-terminated list of filenames in the given file.
--threads <threads> Number of counting threads to spawn [default: 1]
ARGS:
<input>... Input files
-% cw Dickens_Charles_Pickwick_Papers.xml
3449440 51715840 341152640 Dickens_Charles_Pickwick_Papers.xml
Performance
Counts of multiple files may be accelerated by use of the --threads
option:
'xargs <files cw --threads=12' ran
2.01 ± 0.03 times faster than 'xargs <files cw --threads=4'
7.07 ± 0.09 times faster than 'xargs <files cw'
11.55 ± 0.15 times faster than 'xargs <files wc'
17.31 ± 0.23 times faster than 'xargs <files gwc'
Line counts are optimized using the bytecount
crate:
'cw -l Dickens_Charles_Pickwick_Papers.xml' ran
3.44 ± 0.04 times faster than 'wc -l Dickens_Charles_Pickwick_Papers.xml'
4.17 ± 0.05 times faster than 'gwc -l Dickens_Charles_Pickwick_Papers.xml'
Line counts with line length are optimized using the memchr
crate:
'cw -lL Dickens_Charles_Pickwick_Papers.xml' ran
1.73 ± 0.01 times faster than 'wc -lL Dickens_Charles_Pickwick_Papers.xml'
15.07 ± 0.07 times faster than 'gwc -lL Dickens_Charles_Pickwick_Papers.xml'
Note without -m
cw only operates on bytes, and it never cares about your locale.
'cw Dickens_Charles_Pickwick_Papers.xml' ran
1.45 ± 0.01 times faster than 'wc Dickens_Charles_Pickwick_Papers.xml'
2.05 ± 0.00 times faster than 'gwc Dickens_Charles_Pickwick_Papers.xml'
-m
enables UTF-8 processing, with a fast-path for just character length, again
using bytecount
:
'cw -m Dickens_Charles_Pickwick_Papers.xml' ran
30.21 ± 0.39 times faster than 'gwc -m Dickens_Charles_Pickwick_Papers.xml'
70.36 ± 0.91 times faster than 'wc -m Dickens_Charles_Pickwick_Papers.xml'
'cw -m test-utf-8.html' ran
84.74 ± 1.12 times faster than 'wc -m test-utf-8.html'
124.21 ± 1.64 times faster than 'gwc -m test-utf-8.html'
And another path for character and line length:
'cw -mlL Dickens_Charles_Pickwick_Papers.xml' ran
3.88 ± 0.01 times faster than 'gwc -mlL Dickens_Charles_Pickwick_Papers.xml'
9.05 ± 0.02 times faster than 'wc -mlL Dickens_Charles_Pickwick_Papers.xml'
'cw -mlL test-utf-8.html' ran
9.42 ± 0.01 times faster than 'wc -mlL test-utf-8.html'
18.95 ± 0.03 times faster than 'gwc -mlL test-utf-8.html'
And a slow path for everything else:
'cw -mLlw Dickens_Charles_Pickwick_Papers.xml' ran
1.35 ± 0.00 times faster than 'gwc -mLlw Dickens_Charles_Pickwick_Papers.xml'
3.15 ± 0.00 times faster than 'wc -mLlw Dickens_Charles_Pickwick_Papers.xml'
These tests are on FreeBSD 12 on a 2.1GHz Westmere Xeon. gwc
is from GNU
coreutils 8.30 - note its performance here is rather pessimised in some areas by
FreeBSD's rather weak memchr
implementation. YMMV.
From: https://github.com/Freaky/cw/blob/v0.7.0/LICENSE.txt
LICENSE
Copyright 2019 Thomas Hurst <[email protected]>
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.
Package can be verified like this:
1. Go to https://github.com/Starz0r/ChocolateyPackagingScripts/releases/tag/cw/v0.7.0 and download from there.
i686: https://github.com/Starz0r/ChocolateyPackagingScripts/releases/download/cw/v0.7.0/cw-i686.exe
x86_64: https://github.com/Starz0r/ChocolateyPackagingScripts/releases/download/cw/v0.7.0/cw-amd64.exe
to download the ZIP archive and extract the executables. You may wish to rename one of the files.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum: cb6cdeaa5b0949095e284e8be5db4254b9623d8d06275bd65599c0ecc67eab26ac5fc8522c487aca7333f7a2a85950cca87d932950216ec206ff25b7019d2853
checksum64: 9ee104e1cf88e309a8eb019eb9d8784f15b5a76e3b302f81ecd3e4f9c065524f80d3026f925856d03c5f21c5e1035e80c6c81872f5addc9f961d653d0c5ef815
File 'LICENSE.txt' obtained from:
https://github.com/Freaky/cw/blob/v0.7.0/LICENSE.txt
md5: 382ABC286F4A6E0DE3958FF8127FE16E | sha1: 884ABD28BE688599BE8685C3EEE42A5741CAC7CC | sha256: 459DF81E50AD783F17391FCC8F4497334D4526BA1B23FC502EDC4C6697E8698C | sha512: 9EE104E1CF88E309A8EB019EB9D8784F15B5A76E3B302F81ECD3E4F9C065524F80D3026F925856D03C5F21C5E1035E80C6C81872F5ADDC9F961D653D0C5EF815
md5: D1AFFDEEC1841DF05FAAA23A78676E05 | sha1: 037C09F497ECA20E2D4F5AF6208CB89B7B7AEF19 | sha256: DF947511B7E1DF8ADD4BE3A3B4F48E52B52D55C287486C11CDCF5EED1F2157F4 | sha512: CB6CDEAA5B0949095E284E8BE5DB4254B9623D8D06275BD65599C0ECC67EAB26AC5FC8522C487ACA7333F7A2A85950CCA87D932950216EC206FF25B7019D2853
Log in or click on link to see number of positives.
- cw.0.7.0.nupkg (f0d59f3af547) - ## / 63
- cw.exe (459df81e50ad) - ## / 67
- cw.exe (df947511b7e1) - ## / 66
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
cw - Count Words 0.7.0 | 580 | Thursday, September 23, 2021 | Approved | |
cw - Count Words 0.6.0 | 90 | Monday, September 20, 2021 | Approved | |
cw - Count Words 0.5.0 | 84 | Monday, September 20, 2021 | Approved | |
cw - Count Words 0.4.0 | 81 | Monday, September 20, 2021 | Approved | |
cw - Count Words 0.3.0 | 78 | Sunday, September 19, 2021 | Approved | |
cw - Count Words 0.2.0 | 96 | Sunday, September 19, 2021 | Approved | |
cw - Count Words 0.1.0 | 106 | Saturday, September 18, 2021 | Approved |
Copyright © 2019 - 2021 Thomas Hurst
Changed
- Use
bstr
for the slow multibyte path to cope with invalid UTF-8.
Fixed
- Parse
--files-from
and--files0-from
arguments properly.
-
- vcredist140 (≥ 14.20.27508.1)
Ground Rules:
- This discussion is only about cw - Count Words and the cw - Count Words 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 cw - Count Words, 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.