Bonjour
J'ai un probleme tout bete, mais la je seche:
Lorsque je fais un :
Code :
- ssh becane "cat /etc/fstab"
- # System /etc/fstab file. Static information about the file systems
- # See fstab(4) and sam(1M) for further details on configuring devices.
- /dev/vg00/lvol3 / vxfs defaults 0 1 #
- /dev/vg00/lvol1 /stand hfs defaults 0 1 #
- /dev/vg01/lvol4 /opt vxfs defaults 0 2 #
- ...
|
je recupère le fstab sous une forme correcte
Par contre, lorque je fais ca dans mon script :
Code :
- # fstab de la machine
- FSTAB=$(ssh ${MACHINE} "cat /etc/fstab" )
- # DEBUG
- echo
- echo "[DEBUG]"
- echo ${FSTAB}
- echo "[/DEBUG]"
- echo
|
Code :
- [DEBUG]
- # System /etc/fstab file. Static information about the file systems # See fstab(4) and sam(1M) for further details on configuring devices. /dev/vg00/lvol3 / vxfs defaults 0 1 # /dev/vg00/lvol1 /stand hfs
- ...
- [/DEBUG]
|
J'ai tout sur la meme ligne T_T
Un remède, docteur ?
edit : un probleme IFS ?