Skip to content

Instantly share code, notes, and snippets.

@nkostic
Created May 26, 2020 22:43
Show Gist options
  • Save nkostic/2843e95465b94a50e29d311e93acf9c2 to your computer and use it in GitHub Desktop.
Save nkostic/2843e95465b94a50e29d311e93acf9c2 to your computer and use it in GitHub Desktop.
Useful linux terminal commands

Duplicate Files:

for i in {1..100}; do cp test.ogg "test_$i.ogg" ; done

How Many Files in Folder:

find . -type f | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment