Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # To make sure spaces in the file names won't cause problems
  2. IFS=$(echo "nb");
  3. files=($(find . -type f));
  4. for i in "${files[@]}"; do
  5. link=$(dropbox sharelink "$i");
  6. echo 'file '"$i"' has the shared link '"$link";
  7. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement