Use curly braces to set them off:
echo "${10}"
You can also iterate over the positional parameters like this:
for arg
or
for arg in "$@"
or
while (( $# > 0 )) # or [ $# -gt 0 ]
do
echo "$1"
shift
done
Failed to execute Terminal Emulator. Input/Output error. I have installed Xfce4 desktop environment in server. When i am opening terminal an...
No comments:
Post a Comment