1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 03:29:48 +03:00

Prevent unwanted shell expansion

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12568 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cyrus 2008-09-11 12:23:20 +00:00
parent 8b8591a6c2
commit bdbfc90b0b

View File

@ -9,10 +9,10 @@ while [ $i -le 10 ]; do
for blk in `find host* -type d 2>/dev/null`; do
[ -d /sys/${DEVPATH}/${blk}/block/ ] && {
cd
for disc in `find /sys/${DEVPATH}/${blk}/block -name sd*`; do
for disc in `find /sys/${DEVPATH}/${blk}/block -name "sd*"`; do
sleep 2
cd $disc
for node in `find . -name sd* | cut -d "/" -f2`; do
for node in `find . -name "sd*" | cut -d "/" -f2`; do
echo "mounting /dev/${node} on /mnt/usbdrive"
mkdir -p /mnt/usbdrive
mount /dev/${node} /mnt/usbdrive