回答:
私は、理論的にはうまくいくはずの小さなスクリプトでこの質問に半分答えています。
--waiting-contentで文字列を検索し、IDを取得して--schedule-nextに送信します。
悲しいことに、それは動作しません「u1sdtool --schedule-次」のコマンドがDBUSのバグに失敗していると理由のため、このバグレポート、私はそれのために明るい未来は表示されません。
#!/bin/bash
if [ $1 ]
then
search=$1
else
echo "You need to provide a search string: u1up <search>"
exit
fi
FirstResult=$(u1sdtool --waiting-content | grep -i $search)
if [ $FirstResult ]
then
node_id=$(echo $FirstResult | sed -n 's/.*node_id=\(.*\)\ share.*/\1/p')
share_id=$(echo $FirstResult | sed -n 's/.*share_id=\(.*\)\ path.*/\1/p')
path=$(echo $FirstResult | sed -n 's/.*path=\(.*\)/\1/p')
echo "Attempting to prioritize $path ..."
u1sdtool --schedule-next=$share_id $node_id
else
echo "Your search did not match any file waiting in the Ubuntu One queue."
exit
fi
それは興味深い質問でした!