Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

carbonCosts.html

Blame
  • Forked from SERG / fridayFagPackets
    Source project has a limited visibility.
    loop2.sh 118 B
    #!/bin/bash
    
    for file in ./*
    do
    	numLines=$(wc -l < $file)
    	echo The file $file contains $numLines lines of text
    done