9 lines
87 B
Bash
Executable File
9 lines
87 B
Bash
Executable File
#!/bin/ksh
|
|
|
|
echo -n "Package name: "
|
|
read package
|
|
|
|
pkg_info -Q $package | less
|
|
|
|
exit 0
|