Infolist=($(du *))
echo "Get the list one $Infolist"
This has formed a array after quating the “()”。
Infolist=$(du *)
echo "Get the two $Infolist"
This is just a string for the Infolist.
Infolist=($(du *))
echo "Get the list one $Infolist"
This has formed a array after quating the “()”。
Infolist=$(du *)
echo "Get the two $Infolist"
This is just a string for the Infolist.