[bash]#!/bin/sh HOST="silveiraneto.net" if ping -c 1 $HOST > /dev/null then echo your command fi [/bash] replace silveiraneto.net for your desired hostname or ip ping sends…
[bash]#!/bin/sh HOST="silveiraneto.net" if ping -c 1 $HOST > /dev/null then echo your command fi [/bash] replace silveiraneto.net for your desired hostname or ip ping sends…
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ê…
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…