‹ projects

reverberation

speech-to-text on the linux desktop
Log | Files | Refs | README

install.sh (135B)


      1 #!/bin/bash
      2 
      3 set -e
      4 
      5 find src -type f -printf '%P\n' | while read path ; do
      6 
      7     install -v -D "src/$path" "/$path"
      8 
      9 done
     10 
     11 echo "done"