escape smart drives path

This commit is contained in:
Daniel Berteaud 2013-04-12 15:24:51 +02:00
parent b3f251e937
commit 7ca8e6daa4
1 changed files with 2 additions and 1 deletions

View File

@ -1,9 +1,10 @@
#!/bin/bash
#!/bin/sh
echo -e "{\n\t\"data\":[\n\n"
for DISK in $(smartctl --scan-open | cut -d' ' -f1); do
smartctl -A $DISK >/dev/null 2>&1
if [ $? -eq 0 ]; then
DISK=$(echo $DISK | sed -e 's|/|\\/|g')
echo -e "\t{\n"
echo -e "\t\t\"{#SMARTDRIVE}\":\"$DISK\""
echo -e "\t}"