我有这个功能:
find () {
case "$1" in
package)
pacman -Ss
;;
file)
echo "Find file"
;;
*)
echo "You cannot find something like this."
;;
esac
}
我的目标是能够做类似的事情find package foo
。然而,看起来 thefoo
没有作为参数传递给 pacman。我该如何解决?