idle-exec-command $containerName apropos $keywords;
}
+function ckpackage() {
+ containerName=$1;
+ package=$2;
+ case $containerName in
+ 'alpine') idle-exec-command $containerName "apk search $package"; break;;
+ 'archlinux') idle-exec-command $containerName "pacman -Ss $package"; break;;
+ 'debian|kali|ubuntu') idle-exec-command $containerName "apt search $package"; break;;
+ esac
+}
+
if [ $# -gt 0 ]; then
source /usr/local/bin/idle;
command=$1;