Skip to content

wklharry/hrl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#!/bin/bash
# usage: ./insert_license.sh <path to ros package>
# e.g. ./insert_license.sh code_publications/2010_icra_epc_pull

if [ "$1" = "" ]; then
    echo "Usage: ./insert_license.sh <path to ros package>"
    exit
fi

for f in `find $1 -name "*.py" -and ! -name "__init__.py"`
do
    sed -i '1i \\' $f
    sed -i '1i \# \\author Advait Jain (Healthcare Robotics Lab, Georgia Tech.)' $f
    sed -i '1i \#' $f
    sed '1r LICENSE.txt'< $f > a.py
    mv a.py $f
done


About

Healthcare Robotics Lab general workspace

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 75.3%
  • C++ 17.5%
  • CMake 1.9%
  • Java 1.5%
  • HTML 1.0%
  • M4 0.9%
  • Other 1.9%