Skip to content
Snippets Groups Projects
Select Git revision
  • 6e00f61f43a675a2919c918d16df74494f00906c
  • main default protected
  • feat_dma230_dataio
  • feat_qspi_rom
  • feat_extio
  • feat_dmax4
  • feat_dma350
  • feat_nanosoc_regions
  • feat_accel_decouple
  • dev
  • feat_accel_hash_stream
  • nanosoc-2023
12 results

constraints.sdc

Blame
  • 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