mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
5 lines
116 B
Bash
5 lines
116 B
Bash
#!/usr/bin/env sh
|
|
set -e
|
|
# Search for package and return description
|
|
dnf search "$1" | cut -d ':' -f 2- | sed -n 2p
|