mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-25 01:49:14 -04:00
10 lines
133 B
Bash
Executable File
10 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /Users/mk/Library/Application\ Support
|
|
|
|
for i in `seq 101 500`;
|
|
do
|
|
dir=BS_$i
|
|
mkdir $dir
|
|
cp -av BS_/* $dir/
|
|
done |