mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
16 lines
208 B
Bash
Executable File
16 lines
208 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd ./icons
|
|
|
|
n=$(ls -1 | wc -l)
|
|
m=0
|
|
|
|
echo "["
|
|
for i in $(ls -1 *.svg | cut -d '.' -f 1 )
|
|
do
|
|
m=$((m + 1))
|
|
echo -n " "\"$i\"
|
|
[ "$m" == $n ] && echo "" || echo ","
|
|
done
|
|
echo "]"
|