summaryrefslogtreecommitdiff
path: root/bt-send-files.sh
blob: 18517b383e417d1deec6f583094a205fe3f398bb (plain)
1
2
3
4
5
#!/bin/sh
target=$(bt-device -l|tail -n+2|fzy|sed -E 's/^.*\(([0-9A-F:]{17})\)$/\1/')
for f in $@; do
  bt-obex -p $target $f
done