mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
11 lines
218 B
Bash
11 lines
218 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd ../
|
||
|
cd "blockchains/binance/assets"
|
||
|
|
||
|
for symbol in *
|
||
|
do
|
||
|
echo $symbol
|
||
|
upper=$(echo "$symbol" | awk '{print toupper($0)}')
|
||
|
git mv "$symbol" "$upper-test" && git mv "$upper-test" "$upper"
|
||
|
done
|