文件操作 - screenshots.sh
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/doc/python-urwid-1.1.1/docs/tools/screenshots.sh
编辑文件内容
#!/bin/bash # $1: python script to run # urxvt, xdotool and import are required to run this script CLASSNAME=$(head -c 6 /dev/urandom | base64 | tr -cd [:alnum:]) PYTHON=python urxvt -bg gray90 -b 0 +sb -fn '-misc-fixed-medium-*-*-*-*-140-*-*-*-*-*-*' \ -fb '-misc-fixed-bold-*-*-*-*-140-*-*-*-*-*-*' \ -name "$CLASSNAME" -e "$PYTHON" "$1" & RXVTPID=$! until RXVTWINDOWID=$(xdotool search --classname "$CLASSNAME"); do sleep 0.1 done export RXVTWINDOWID image=${1%.py} c=1 while read -r line; do # the echo trick is needed to expand RXVTWINDOWID variable echo $line | xdotool - import -window "$RXVTWINDOWID" "${image}$c.png" (( c++ )) done kill $RXVTPID
修改文件时间
将文件时间修改为当前时间的前一年
删除文件