shell_command_generator 1.0.1 copy "shell_command_generator: ^1.0.1" to clipboard
shell_command_generator: ^1.0.1 copied to clipboard

Run shell commands as part of your build process.

example/lib/shell_command_generator_example.dart

import 'package:shell_command_generator_annotation/shell_command_generator_annotation.dart';

part 'shell_command_generator_example.g.dart';

@Shell('ls')
const String files = _$files;

void main() {
  print(files);
}