Skip to content
Snippets Groups Projects
Select Git revision
  • feadc1fb6d349fe497092e2e75b8b1fab2a52e69
  • master default protected
2 results

env.R

Blame
  • Forked from SERG / woRkflow
    Source project has a limited visibility.
    var.sh 232 B
    #!/bin/bash
    
    exampleVariable=600
    
    for i in {1..10}
    do
    	echo hello $i
    done
    
    for file in ./*
    do
    	numLines=$(wc -l < $file)
    	echo the file $file contains $numLines lines of text
    done
    
    echo the value of the variable is $exampleVariable