Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ See something incorrectly described, buggy or outright wrong? Open an issue or s
* [Parsing a `key=val` file.](#parsing-a-keyval-file)
* [Get the first N lines of a file](#get-the-first-n-lines-of-a-file)
* [Get the number of lines in a file](#get-the-number-of-lines-in-a-file)
* [Get the number of characters in a file](#get-the-number-of-characters-in-a-file)
* [Count files or directories in directory](#count-files-or-directories-in-directory)
* [Create an empty file](#create-an-empty-file)
* [FILE PATHS](#file-paths)
Expand Down Expand Up @@ -470,6 +471,40 @@ $ lines ~/.bashrc
48
```

## Get the number of characters in a file

Alternative to `wc -c`.

**Example Function:**


```sh
chars() {
# Usage: chars "file"

# '|| [ -n "$line" ]': This ensures that lines
# ending with EOL instead of a newline are still
# operated on in the loop.
#
# 'read' exits with '1' when it sees EOL and
# without the added test, the line isn't sent
# to the loop.
while IFS= read -r line && chars=$((chars+1)) || [ -n "$line" ]; do
# "${#line}": Number of characters in '$line'.
chars=$((chars+${#line}))
done < "$1"

printf '%s\n' "$chars"
}
```

**Example Usage:**

```shell
$ chars ~/.bashrc

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Its nicer to create and delete a file here. :)

3526
```

## Count files or directories in directory

This works by passing the output of the glob to the function and then counting the number of arguments.
Expand Down