Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. csv_files=`find . -type f -name "*.csv"`
  4.  
  5. for file in $csv_files; do
  6. echo "File: $file"
  7. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement