Skip to content

Instantly share code, notes, and snippets.

@HugoPoi
Created July 5, 2017 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HugoPoi/22e6c3a8ecc11b149635c2c93a35559b to your computer and use it in GitHub Desktop.
Save HugoPoi/22e6c3a8ecc11b149635c2c93a35559b to your computer and use it in GitHub Desktop.
Download only certain file with dbxcli
#!/bin/bash
#
# Usage : dbxcligetfiles.sh "\*\.png" /Webdesign
#
dbxcli search $1 $2 | while read line
do
echo $line
mkdir -p ".${line%/*}"
dbxcli get "$line" ".$line"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment