install.sh 105 B

12345
  1. #!/bin/bash
  2. for f in `ls | grep -v "\\.sh"`; do
  3. cp $f /usr/local/bin
  4. chmod +x /usr/local/bin/$f
  5. done