Capitalize the 1st letter of each word ShowCapitalize the 1st letter of each word
Below are two ways to proceed:
Method 1
sed-r 's /(^.|.) / \ U & / g'
Method 2
sed 's / ^. \ | [a-z] / \ U & / g'
Method 3
sed-r 's / \
Renaming multiple files in batch ShowRenaming multiple files in batch
Native features
Using a third-party program
Renaming a large number of files can quickly become tedious. Fortunately, there are tools to automate this task in many cases:
Native features
On Windows...
How to write a Cover Letter ShowHow to write a Cover Letter
What is a Cover Letter?
The Layout
The Content
First Paragraph
Second Paragraph
Third Paragraph
Fourth Paragraph
Closing the Letter
What is a Cover Letter?
When applying for a job or an internship you...
Inserting space between each letter ShowInserting space between each letter
$ echo -e "How are you\n everything alright" | sed 's/./& /g'
H o w a r e y o u
E v e r y t h i n g a l r I g h t
The disadvantage is that the natural space between each word...
Background image/ Printed Watermark with Microsoft Word ShowBackground image/ Printed Watermark with Microsoft Word
Insert a background image:
Insert a Printed Watermark background:
You might want to customize the blank background of your Word document either to advertise your business or...
Download PhraseExpress Autotext ShowSometimes in mobile phones, they offer a helper for the seizure of your "Texto". The helper reacts by supplementing or offering a supplementary benefit in a word from the first letter or from the first letters that you enter.
PhraseExpress is a...
Download Quick Word to PDF ShowTo transfer your documents most in possible security, there is not better than format PDF. Then, to convert your documents Word into PDF, adopt the quick program Word to PDF.
Quick Word to PDF is a tool which integrates with the interface of...
Cryptography - The SET protocol ShowIntroduction to SET
SET (Secure Electronic Transaction) is a protocol that was developed by Visa and MasterCard and that uses the SSL standard.
SET is based on the use of an electronic signature from the buyer and a transaction involving not...