Contact: aviboots(AT)netvision.net.il
40,866 questions
53,271 answers
573 users
s="bash Unix shell and command language" firstcharacter=${s::1} echo $firstcharacter # run: # # b #
s="bash Unix shell and command language" firstcharacter=${s:0:1} echo $firstcharacter # run: # # b #