6 lines
146 B
Plaintext
6 lines
146 B
Plaintext
|
#!/bin/bash
|
||
|
# Check which files dropbox is modifying
|
||
|
|
||
|
ls -l /proc/$(pidof dropbox)/fd | egrep -v 'pipe:|socket:|/dev' | grep "$DROPBOX_DIR/[^.]"
|
||
|
|