Tag Archives: shell

Congelando e Ressuscitando Processos

batman mr freeze

Nem só de morte vive o kill.

Suponha que você tem um processo chamado program e quer congelar seu funcionamento. Para congela-lo sem mata-lo você pode mandar um sinal SIGSTOP com:

kill -s stop `pidof program`

Para ressuscitar o mesmo processo:

kill -s cont `pidof program`

Creating a lot of thumbnails with Shell script

This script create a thumbnail with width 100 of each png file in the actual directory.

#!/bin/sh
for i in *.png
do
	echo "convert -thumbnail 100 $i $i"
	convert -thumbnail 100 $i $i
done