mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
11 lines
211 B
Bash
11 lines
211 B
Bash
#! /bin/sh
|
|
|
|
prefix=stock_
|
|
list=
|
|
|
|
for file in "$@"; do
|
|
name=$(echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||')
|
|
list="$list $prefix$name $file"
|
|
done
|
|
|
|
gdk-pixbuf-csource --raw --static --build-list $list
|