プリンターCUPSのリセット
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool --reset -f
この1文でリセットされますが
そこは、ホラねぇ それじゃあツマらんって事で
ジョブの削除
キューの削除してからの
リセットにしました
同じ事を
BASH
#!/bin/bash
ORG_IFS=$IFS
theQueList=`lpstat -a | awk '{print $1}'`
IFS=$'\n'
for theQueName in $theQueList;do
echo $theQueName
lprm -P $theQueName
done
for theQueName in $theQueList;do
lpadmin -x $theQueName
done
IFS=$ORG_IFS
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool --reset -f
exit
同じ事を
zsh
#!/bin/zsh
#
local ORG_IFS=$IFS
theQueList=`lpstat -a | awk '{print $1}'`
local IFS=$'\n'
setopt sh_word_split
for theQueName in $theQueList;do
echo $theQueName
lprm -P $theQueName
done
for theQueName in $theQueList;do
lpadmin -x $theQueName
done
local IFS=$ORG_IFS
/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool --reset -f
exit
余談
たのむから『見た通り』の『表示』にしてくれんかな…
| 固定リンク
「Print」カテゴリの記事
- [macOS13]CUPS2.3.4での混乱(2023.07.06)
- [Print]キーノートとパワーポイントのデフォルト用紙サイズをカスタム用紙サイズに追加(2021.11.21)
- プリンターCUPSのリセット(2021.11.04)
- PostScriptとサイズの数値の丸めの違い(2021.07.04)
- [AppleScripts]PS書出し用のバーチャルプリンタを追加する(簡易版)(2021.07.04)