Read our Code of Conduct to keep our community approachable and respectable.
The scripts are categorized by framework wise. So, developers from other stack may find useful scripts easily.
βββ cmd
β βββ [framework]
β β βββ cmd
β β β βββ [script.sh]For example, we have a sample script for flutter doctor command that's used to inspect Flutter Framework Environment.
βββ cmd
β βββ flutter
β β βββ cmd
β β β βββ doctor.sh- Make sure you add descriptions in comments followed by
#or##above each script or in the start of Batch Scripts. - Add
#!/bin/shthe in the beginning of script.
#!/bin/sh
##? Inspecting the current state of the Flutter environment
flutter doctor -v
##? Checking for the latest version of Flutter
# flutter upgrade
##? Checking for the latest version of Flutter with force update
# flutter upgrade --force