#!/bin/sh
A="\"a b c\""
echo $A #"a b c" - three strings
echo "$A" #"a b c" - one string
echo '$A' # $A
Post a Comment
No comments:
Post a Comment