Skip to content

Instantly share code, notes, and snippets.

@niwatly
Last active December 2, 2019 10:07
Show Gist options
  • Save niwatly/4353bd9eba55527adb52e4972a244ea3 to your computer and use it in GitHub Desktop.
Save niwatly/4353bd9eba55527adb52e4972a244ea3 to your computer and use it in GitHub Desktop.
copyfluttericons() {
if test $# != 1; then
echo "フォルダを指定してください"
else
flutterIconsFolder=$1
\mv -f $flutterIconsFolder/*.dart ./lib/resource/icon_resource.dart
\mv -f $flutterIconsFolder/fonts/*.ttf ./fonts/
\mv -f $flutterIconsFolder/config.json ./fonts/
rmdir $flutterIconsFolder/fonts
rmdir $flutterIconsFolder
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment