notes/list all files recursively without ls or find-UHBCzA89.sh
#!/bin/sh


search() {
  local d
  for d in *; do
    if [ -d "$d" ];
    then
      (cd "$d" && search)
    else
      echo "$(pwd)/$d"
    fi
  done
}
search

syntax highlighted by Code2HTML, v. 0.9.1