shell_command_generator 0.1.0 copy "shell_command_generator: ^0.1.0" to clipboard
shell_command_generator: ^0.1.0 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);
}