mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
6 lines
183 B
Bash
Executable File
6 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
bucket="$1"
|
|
access="$2"
|
|
uplink ls ${access:+--access "$access"} "sj://$bucket/" | awk '{print $NF}' | xargs -I {} uplink rm ${access:+--access "$access"} "sj://$bucket/{}"
|