जवाबों:
UNEXPAND(1) User Commands UNEXPAND(1)
NAME
unexpand - convert spaces to tabs
SYNOPSIS
unexpand [OPTION]... [FILE]...
DESCRIPTION
Convert blanks in each FILE to tabs, writing to standard output. With
no FILE, or when FILE is -, read standard input.
Mandatory arguments to long options are mandatory for short options
too.
-a, --all
convert all blanks, instead of just initial blanks
--first-only
convert only leading sequences of blanks (overrides -a)
-t, --tabs=N
have tabs N characters apart instead of 8 (enables -a)
-t, --tabs=LIST
use comma separated LIST of tab positions (enables -a)
--help display this help and exit
--version
output version information and exit
. . .
STANDARDS
The expand and unexpand utilities conform to IEEE Std 1003.1-2001
(``POSIX.1'').
मुझे लगता है कि आप जाग के साथ कोशिश कर सकते हैं
awk -v OFS="\t" '$1=$1' file1
या यदि आप पीड़ित हैं, तो SED
sed 's/[:blank:]+/,/g' thefile.txt > the_modified_copy.txt
या यहां तक कि tr
tr -s '\t' < thefile.txt | tr '\t' ' ' > the_modified_copy.txt
या सैम Bisbee द्वारा sued tr समाधान का एक सरलीकृत संस्करण
tr ' ' \\t < someFile > someFile
tr ' ' \\t < someFile > someFile
ls -l | sed "s/ \+/ /g"
awk -v OFS="\t" '$1=$1' file1
मैंने देखा कि यदि आपके पास 0 (जैसे 0 1 2
) के साथ शुरू होने वाली रेखा है , तो परिणाम से लाइन को ommitted किया जाएगा।
पर्ल का उपयोग करना :
perl -p -i -e 's/ /\t/g' file.txt
perl -p -i -e 's/\t/ /g' *.java
बेहतर tr कमांड:
tr [:blank:] \\t
यह unreip -l , grep, कट, आदि के साथ आगे की प्रक्रिया के लिए , आउटपुट को साफ करेगा ।
जैसे,
unzip -l some-jars-and-textfiles.zip | tr [:blank:] \\t | cut -f 5 | grep jar
tr [:blank:] \\t
सादा पाठ फ़ाइलों में हार्ड टैब्स को सॉफ्ट टैब में बदलने के लिए निम्न स्क्रिप्ट को डाउनलोड करें और चलाएं।
प्लेस और स्क्रिप्ट को फ़ोल्डर के अंदर से निष्पादित करें जिसमें सादा पाठ फ़ाइलें हैं।
#!/bin/bash
find . -type f -and -not -path './.git/*' -exec grep -Iq . {} \; -and -print | while read -r file; do {
echo "Converting... "$file"";
data=$(unexpand --first-only -t 4 "$file");
rm "$file";
echo "$data" > "$file";
}; done;
आप भी इस्तेमाल कर सकते हैं astyle
। मुझे यह काफी उपयोगी लगा और इसके कई विकल्प भी हैं:
Tab and Bracket Options:
If no indentation option is set, the default option of 4 spaces will be used. Equivalent to -s4 --indent=spaces=4. If no brackets option is set, the
brackets will not be changed.
--indent=spaces, --indent=spaces=#, -s, -s#
Indent using # spaces per indent. Between 1 to 20. Not specifying # will result in a default of 4 spaces per indent.
--indent=tab, --indent=tab=#, -t, -t#
Indent using tab characters, assuming that each tab is # spaces long. Between 1 and 20. Not specifying # will result in a default assumption of
4 spaces per tab.`
यदि आप एक टैब के साथ एक पंक्ति पर सभी लगातार रिक्त स्थान को बदलने के बारे में बात कर रहे हैं tr -s '[:blank:]' '\t'
।
[root@sysresccd /run/archiso/img_dev]# sfdisk -l -q -o Device,Start /dev/sda
Device Start
/dev/sda1 2048
/dev/sda2 411648
/dev/sda3 2508800
/dev/sda4 10639360
/dev/sda5 75307008
/dev/sda6 96278528
/dev/sda7 115809778
[root@sysresccd /run/archiso/img_dev]# sfdisk -l -q -o Device,Start /dev/sda | tr -s '[:blank:]' '\t'
Device Start
/dev/sda1 2048
/dev/sda2 411648
/dev/sda3 2508800
/dev/sda4 10639360
/dev/sda5 75307008
/dev/sda6 96278528
/dev/sda7 115809778
अगर आप सभी व्हाट्सएप (जैसे स्पेस, टैब, न्यूलाइन, आदि) को बदलने की बात कर रहे हैं, तो tr -s '[:space:]'
।
[root@sysresccd /run/archiso/img_dev]# sfdisk -l -q -o Device,Start /dev/sda | tr -s '[:space:]' '\t'
Device Start /dev/sda1 2048 /dev/sda2 411648 /dev/sda3 2508800 /dev/sda4 10639360 /dev/sda5 75307008 /dev/sda6 96278528 /dev/sda7 115809778
यदि आप एक टैब-क्षतिग्रस्त फ़ाइल को ठीक करने के बारे में बात कर रहे हैं, तो उपयोग करें expand
और unexpand
जैसा कि अन्य उत्तरों में उल्लेख किया गया है।
यह एक स्थान (लेकिन टैब नहीं) के साथ लगातार रिक्त स्थान को बदल देगा।
tr -s '[:blank:]'
यह एक टैब के साथ लगातार रिक्त स्थान को बदल देगा।
tr -s '[:blank:]' '\t'
-c
यह लगातार वर्णों की जगह लेता है जो हैं रिक्त स्थान नहीं हैं।
tr
याsed
।