where 8.0.0 copy "where: ^8.0.0" to clipboard
where: ^8.0.0 copied to clipboard

discontinued

Find the instances of an executable in the system path. Like the `which` Linux command.

example/main.dart

// ignore_for_file: avoid_print
import "package:where/where.dart";

/// Finds the instances of an executable.
Future<void> main() async {
	try {
		// `path` is the absolute path to the executable.
		final path = await where("foobar");
		print("The command 'foobar' is located at: $path");
	}

	on FinderException catch (err) {
		print("The command '${err.command}' is not found");
	}
}
3
likes
15
pub points
4%
popularity

Publisher

verified publisherbelin.io

Find the instances of an executable in the system path. Like the `which` Linux command.

Homepage
Repository
View/report issues

License

unknown (LICENSE)

Dependencies

build_cli_annotations, path

More

Packages that depend on where