How to retrieve the first 10 characters of a variable with Bash?
FOO="qwertzuiopasdfghjklyxcvbnm"
I need to get qwertzuiop.
How to retrieve the first 10 characters of a variable with Bash?
FOO="qwertzuiopasdfghjklyxcvbnm"
I need to get qwertzuiop.
 
    
     
    
    If the variable is: FOO="qwertzuiopasdfghjklyxcvbnm"
then
 echo ${FOO:0:10}
will give the first 10 characters.
 
    
    Use the head command.
echo $FOO | head -c 10
=> qwertzuiop
