x=`sudo find /test -name "*.php"`
echo $x
p421.php p423.php read-session.php
我想用空格作为分隔符来剪切 $x
echo $x|cut -d " "
cut: you must specify a list of bytes, characters, or fields
x=`sudo find /test -name "*.php"`
echo $x
p421.php p423.php read-session.php
我想用空格作为分隔符来剪切 $x
echo $x|cut -d " "
cut: you must specify a list of bytes, characters, or fields