manuskript/icons/copyicon.sh

21 lines
383 B
Bash
Raw Normal View History

2015-09-29 22:17:03 +13:00
#!/bin/bash -
# echo "AVR-GCC"
# elf="main.elf"
# c="main.c"
# gcc="avr-gcc"
# options=( "-mmcu=atmega128" "-Wall" -"Os" )
# command=( "$gcc" "${options[@]}" -o "$elf" "$c" )
# # execute it:
# "${command[@]}"
name=$1
echo $name
cd $(dirname "$0")
cd Numix
pwd
for i in $(find -name $name.svg); \
do echo $i; \
cp --parents $i ../NumixMsk; \
done