plar.info

.::. .:.. .: .:. .:.:.: .. :. ..:. :::

  • Increase font size
  • Default font size
  • Decrease font size
Home Linux Linux Guides Useful "one-liners"

Useful "one-liners"

E-mail Print PDF

A list of useful commands that only get used once in a blue moon

Groff - A text formatter

- To convert man pages:

groff -T html -mandoc '<input manpage>' > <file_name>.html

 

Mogrify - An image manipulator

- To resize image by 50%:

mogrify -resize 50% <image.jpg>

 

- To resize image to 256px * 256px:

 

mogrify -resize 256x256 <image.jpg>

 

-To convert from png to jpg:

mogrify -format jpg *.png

 

Last Updated on Thursday, 01 September 2011 14:02