CLI Thumbnail generation
|

CLI Thumbnail generation

[et_pb_section admin_label=”Section” fullwidth=”on” specialty=”off”][et_pb_fullwidth_post_title admin_label=”Fullwidth Post Title” title=”on” meta=”on” author=”off” date=”on” categories=”on” comments=”off” featured_image=”on” featured_placement=”background” parallax_effect=”off” parallax_method=”on” text_orientation=”center” text_color=”dark” text_background=”on” text_bg_color=”rgba(255,255,255,0.9)” module_bg_color=”rgba(255,255,255,0)” title_all_caps=”off” use_border_color=”off” border_color=”#ffffff” border_style=”solid”] [/et_pb_fullwidth_post_title][/et_pb_section][et_pb_section admin_label=”section”][et_pb_row admin_label=”row”][et_pb_column type=”4_4″][et_pb_text admin_label=”Text” background_layout=”light” text_orientation=”left” use_border_color=”off” border_color=”#ffffff” border_style=”solid”] Just found this snippet in one of my local snippet files. i think I got this from some blog…….

Bash killer one liners
|

Bash killer one liners

[et_pb_section admin_label=”Section” fullwidth=”on” specialty=”off”][et_pb_fullwidth_post_title admin_label=”Fullwidth Post Title” title=”on” meta=”on” author=”off” date=”on” categories=”on” comments=”off” featured_image=”on” featured_placement=”background” parallax_effect=”off” parallax_method=”on” text_orientation=”center” text_color=”dark” text_background=”on” text_bg_color=”rgba(255,255,255,0.9)” module_bg_color=”rgba(255,255,255,0)” title_all_caps=”off” use_border_color=”off” border_color=”#ffffff” border_style=”solid”] [/et_pb_fullwidth_post_title][/et_pb_section][et_pb_section admin_label=”section”][et_pb_row admin_label=”row”][et_pb_column type=”4_4″][et_pb_text admin_label=”Text” background_layout=”light” text_orientation=”left” use_border_color=”off” border_color=”#ffffff” border_style=”solid”] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=”row”][et_pb_column type=”4_4″][et_pb_text admin_label=”bottom above footer” background_layout=”light” text_orientation=”left” use_border_color=”off” border_color=”#ffffff” border_style=”solid”] [bsa_pro_ad_space id=5 if_empty=6 hide_for_id=953,680] [/et_pb_text][et_pb_divider admin_label=”Divider” color=”#ffffff” show_divider=”off”…

Remove spaces or Edit chracters in filenames
|

Remove spaces or Edit chracters in filenames

Needed  to remove spaces from filenames, so here we are 🙂 for file in *.mp3; do mv “$file” `echo $file | sed -e ‘s/  */_/g’ -e ‘s/_-_/-/g’`; done or replace all spaces by _ using perl ls *.bed |perl -ne ‘use File::Copy;chomp;$old=$_;s/\s+/_/g;move($old,$_);’ remove underscores rename ‘s/2012mp3/2012/’ *.mp3 Remove the letters mp3 from middle fo filename…

Logrotate & Compression

Logrotate & Compression

yum -y install xz Want to keep lots of logs, yet don’t want them cluttering up your logs directory and want them taking as little space as possible? well lets use a handy utility called logrotate and a compression utility called xz. xz is a lossless data compression program and file format which incorporates the…

Mount box.com as a local folder on ubuntu as webdav
|

Mount box.com as a local folder on ubuntu as webdav

Whats WebDav: Web Distributed Authoring and Versioning (WebDAV) is an extension of the Hypertext Transfer Protocol (HTTP) that facilitates collaboration between users in editing and managing documents and files stored on World Wide Web servers. Whats Box.com [.net]: Box.com is cloud-storage service like Dropbox, SugarSync and google drive. After uploading your various documents, media files,…