feat: generate type aliases in loop
This commit is contained in:
parent
afda7a6ec8
commit
53da156897
1 changed files with 9 additions and 2 deletions
|
@ -46,6 +46,13 @@ pub fn init_cqrs(
|
|||
}
|
||||
|
||||
|
||||
run_loop() {
|
||||
for i in "${@:2}"
|
||||
do
|
||||
run $1 $i
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
if [ -z $1 ]
|
||||
then
|
||||
|
@ -54,6 +61,6 @@ elif [ -z $2 ]
|
|||
then
|
||||
help
|
||||
else
|
||||
run $1 $2 $3 $4 | wl-copy
|
||||
run $1 $2 $3 $4
|
||||
run_loop "$@"
|
||||
run_loop "$@" | wl-copy
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue