Skip to content
Snippets Groups Projects
Select Git revision
  • 3a0579c7eee0e1667d8ffb27a139bf2dcf90da2c
  • test default
2 results

whitespace.sh

Blame
  • whitespace.sh 180 B
    #!/bin/bash
    
    RESULT=0
    
    for i in "$@"; do
      a="`tail -c 1 "$i"`"
      if [ "$a" != "" ]; then
        echo "$i does not have a trailing newline" 1>&2
        RESULT=-1
      fi
    done
    
    exit $RESULT