Friday, August 7, 2009

Remove the first character in a string in bash script

export variable= "anything_you_want" # populate the variable, this is just an example of course

variable=$(echo ${variable:1}) # remove the first character in the variable

echo $variable # show the new value of the variable to make sure the operation is completed successfully

nything_you_want


As simple as this :)

No comments: