Horje
awk split each character Code Example
awk split each character
echo "here is a string" | awk '
{ 
  split($0, chars, "")
  for (i=1; i <= length($0); i++) {
    printf("%s\n", chars[i])
  }
}'




Shell

Related
display settings ubuntu 20.04 in right side Code Example display settings ubuntu 20.04 in right side Code Example
how to rebase initial commit Code Example how to rebase initial commit Code Example
install skimage Code Example install skimage Code Example
regex match numbers and special characters Code Example regex match numbers and special characters Code Example
seeing all the installed apps i terminal Code Example seeing all the installed apps i terminal Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11