# Let's have a few test files
$ touch alpha beta
$ find ./*
./alpha
./beta
# Try find with filtering
$ find ./* -not -path './beta'
./alpha
# Now again, but save the command in a variable
$ F="find ./* -not -path './beta'"
$ echo "$F"
find ./* -not -path './beta'
$ $F
./alpha
./beta
为什么会这样?关于引用的东西......?