hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

install-mods (306B)


      1 #!/bin/sh
      2 modules="ascii
      3 bufio
      4 bytes
      5 crypto
      6 dirs
      7 encoding
      8 endian
      9 errors
     10 fmt
     11 fnmatch
     12 format
     13 fs
     14 getopt
     15 glob
     16 hare
     17 hash
     18 io
     19 linux
     20 log
     21 math
     22 memio
     23 mime
     24 net
     25 os
     26 path
     27 regex
     28 rt
     29 shlex
     30 sort
     31 strconv
     32 strings
     33 temp
     34 test
     35 time
     36 types
     37 unix
     38 uuid"
     39 IFS="
     40 "
     41 for mod in $modules
     42 do
     43 	printf 'install %s\n' "$mod"
     44 	cp -R $mod $1
     45 done