July 2016
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728293031

Categories

July 2016
M T W T F S S
 123
45678910
11121314151617
18192021222324
25262728293031

dos2unix / unix2dos

dos2unix Single Command Wrapper Script perl -pi -e ‘s/\\r//’ [file] #!/bin/sh # Copy to /usr/local/bin/dos2unix

if [ “$1” = “” ]; then echo Usage: `basename $0` [filename] exit fi

# Convert to Unix format. perl -pi -e ‘s/\\r//’ $1 unix2dos Single Command Wrapper Script perl -pi -e ‘s/\\r//; s/\\n/\\r\\n/’ [file] #!/bin/sh # Copy to /usr/local/bin/unix2dos

[…]

Installing FIGlet In Linux

Installing FIGlet In Linux Install a FIGlet utility, to be able to convert text to ASCII Art from the Linux command line.

In Ubuntu, Debian, Linux Mint etc. $ sudo apt-get install figlet

In CentOS, RHEL, Fedora etc. $ yum install figlet

Generate ASCII Text Banners

o use FIGlet with its default settings, simply type […]