5 lines
95 B
Bash
Executable file
5 lines
95 B
Bash
Executable file
#! /usr/bin/zsh
|
|
|
|
mkdir $2
|
|
cd $2
|
|
for f in $1/*(*); do ln -s ../template_$2 `basename $f`; done
|