pub fn relative_name(prefix: &Path, what: &Path) -> String
Expand description

Create a user-usable path to what from prefix.

Examples

assert_eq!(
	quickdash::utilities::relative_name(Path::new("/usr"), Path::new("/usr/bin/quickdash")),
	"bin/quickdash".to_string()
);