Skip to content
Snippets Groups Projects
Select Git revision
  • 63434f31169ca8be273cbb56b8d2fb09120912e0
  • master default
  • disable-new-requests
  • fix-bulletin-view-missing-notes-error
  • add-missing-queue-managers
  • projects-task-53
  • projects-task-51
  • projects-task-43
  • projects-task-24
  • projects-task-31
  • projects-task-32
  • projects-task-8
  • project-setup-docs
  • projects-task-28
  • projects-task-27
  • projects-task-9
  • projects-task-7
  • mass-update-course-codes-in-sections
  • wdn-four
  • learning-outcomes
  • additional-bulletin-pages
  • svn-redesign
  • svn-popups
  • svn-trunk
  • svn-performance
  • svn-tim
26 results

index.js

Blame
  • fixnotabfiles.sh 645 B
    #!/bin/sh
    #------------------------------------------------------
    # Script to find files that are not Unix encoded
    #
    # Laurent Destailleur - eldy@users.sourceforge.net
    #------------------------------------------------------
    # Usage: fixnotabfiles.sh [list|fix]
    #------------------------------------------------------
    
    # Syntax
    if [ "x$1" != "xlist" -a "x$1" != "xfix" ]
    then
    	echo "Usage: fixnotabfiles.sh [list|fix]"
    fi
    
    # To detec
    if [ "x$1" = "xlist" ]
    then
    	find build \( -iname "*.sh" -o -iname "*.spec" \) -exec grep -l -P '\t' {} \;
    fi
    
    # To convert
    if [ "x$1" = "xfix" ]
    then
    	echo Feature not implemented. Please fix files manually.
    fi