주어진 텍스트 파일에서 Linux의 공백을 탭으로 어떻게 대체합니까?
답변:
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로해볼 수있을 것 같아요
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
또는 Sam Bisbee가 제안한 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 사용 :
perl -p -i -e 's/ /\t/g' file.txt
perl -p -i -e 's/\t/ /g' *.java
s/ {4}/
4 칸 들여 쓰기를 탭으로 변환했습니다.
다음 스크립트를 다운로드하고 실행하여 소프트 탭을 일반 텍스트 파일의 하드 탭으로 재귀 적으로 변환합니다.
일반 텍스트 파일이 포함 된 폴더 내에서 스크립트를 배치하고 실행합니다.
#!/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
.