Skip to content

Instantly share code, notes, and snippets.

@chibby0ne
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chibby0ne/0de0911eba310a151cb1 to your computer and use it in GitHub Desktop.
Save chibby0ne/0de0911eba310a151cb1 to your computer and use it in GitHub Desktop.
Counts the number of files of a given directory
#!/bin/bash
# Add this one-liner script to the PATH variable and have the power to count the files in a directory from anywhere in the command line
ls -1 $1 | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment