Deprecated: md5(): Passing null to parameter #1 ($string) of type string is deprecated in /home/onlinesu/public_html/kb/wp-content/mu-plugins/sso.php on line 74
Warning: Cannot modify header information - headers already sent by (output started at /home/onlinesu/public_html/kb/wp-content/mu-plugins/sso.php:74) in /home/onlinesu/public_html/kb/wp-includes/feed-rss2.php on line 8 Script
http://kb.onlinesupport4u.in
Sat, 17 Aug 2013 11:41:06 +0000en-US
hourly
1 https://wordpress.org/?v=7.0Remove spaces between words
http://kb.onlinesupport4u.in/remove-spaces-between-words/
http://kb.onlinesupport4u.in/remove-spaces-between-words/#respondSat, 17 Aug 2013 11:41:06 +0000http://kb.onlinesupport4u.in/?p=15You may have comes across situation where you have to manually edit a single file using excel or words to remove the space between words which is taking consuming and Boring
The below command can do the trick in one command to save your day
cat 116.txt | sed -e ‘s/[\t ]//g;/^$/d’ย > test12
116.txt is the input file which has spaces between words
sed -e ‘s/[\t ]//g;/^$/d’ ย is the command to clear space in words