Skip to content

Latest commit

 

History

History
4 lines (4 loc) · 212 Bytes

File metadata and controls

4 lines (4 loc) · 212 Bytes
  • find . | grep exe$
    • finds file ending with exe
  • for i in $(cat mylist.txt); do echo $i; echo ${i}xxxxx; echo ${i}yyyy; echo ${i}\escapableChar; done
    • populate by concat, slow but easy way to build list