我有一个文件,我们称之为'a.txt',此文件包含以下文本行
do to what
我想知道SED命令是什么来颠倒这个文本的顺序使它看起来像
what to do
我必须做某种追加吗?就像将'do'追加到'to'所以它看起来像
to ++ do(使用++只是为了清楚)
答案 0 :(得分:8)
我知道tac
可以做一些相关的事情
$ cat file
do to what
$ tac -s' ' file
what to do $
-s
定义分隔符的位置,默认情况下为换行符。
答案 1 :(得分:3)
我会使用awk
来执行此操作:
awk '{ for (i=NF; i>=1; i--) printf (i!=1) ? $i OFS : $i "\n" }' file.txt
结果:
what to do
<强> 修改 强>:
如果您需要单行修改“就地”文件,请尝试:
{ rm file.txt && awk '{ for (i=NF; i>=1; i--) printf (i!=1) ? $i OFS : $i "\n" }' > file.txt; } < file.txt
答案 2 :(得分:2)
由于此问题被标记为sed,我的第一个答案是:
首先(当_
包含a.txt
时,使用仲裁do to what
标记已查看的空格:
sed -e '
:a;
s/\([^_]*\) \([^ ]*\)/\2_\1/;
ta;
y/_/ /;
' a.txt
what to do
,当a.txt
包含do to to what
时:
sed -e '
:a;
s/^\(\|.* \)\([^+ ]\+\) \2\([+]*\)\(\| .*\)$/\1\2\3+\4/g;
ta;
:b;
s/\([^_]*\) \([^ ]*\)/\2_\1/;
tb;
y/_/ /;
' <<<'do to to to what'
what to++ do
每个被压缩的重复字都有一个+
:
sed -e ':a;s/^\(\|.* \)\([^+ ]\+\) \2\([+]*\)\(\| .*\)$/\1\2\3+\4/g;ta;
:b;s/\([^_]*\) \([^ ]*\)/\2_\1/;tb;
y/_/ /;' <<<'do do to what what what what'
what+++ to do+
但由于有很多人在寻找简单的bash解决方案,因此有一种简单的方法:
xargs < <(uniq <(tac <(tr \ \\n <<<'do do to what what what what')))
what to do
这可以写成:
tr \ \\n <<<'do do to what what what what' | tac | uniq | xargs
what to do
甚至还有一些bash脚本:
revcnt () {
local wrd cnt plut out="";
while read cnt wrd; do
printf -v plus %$((cnt-1))s;
out+=$wrd${plus// /+}\ ;
done < <(uniq -c <(tac <(tr \ \\n )));
echo $out
}
会这样做:
revcnt <<<'do do to what what what what'
what+++ to do+
revcnt() {
local out i;
for ((i=$#; i>0; i--))
do
[[ $out =~ ${!i}[+]*$ ]] && out+=+ || out+=\ ${!i};
done;
echo $out
}
其中提交的字符串必须作为参数提交:
revcnt do do to what what what what
what+++ to do+
或者如果需要使用标准输入(或来自文件):
revcnt() {
local out i arr;
while read -a arr; do
out=""
for ((i=${#arr[@]}; i--; 1))
do
[[ $out =~ ${arr[i]}[+]*$ ]] && out+=+ || out+=\ ${arr[i]};
done;
echo $out;
done
}
所以你可以处理多行:
revcnt <<eof
do to what
do to to to what
do do to what what what what
eof
what to do
what to++ do
what+++ to do+
答案 3 :(得分:1)
这可能适合你(GNU sed):
sed -r 'G;:a;s/^\n//;t;s/^(\S+|\s+)(.*)\n/\2\n\1/;ta' file
说明:
G
在模式空间(PS)的末尾添加换行符:a
循环名称空间s/^\n//;t
当换行符位于PS的前面时,将其删除并打印行s/^(\S+|\s+)(.*)\n/\2\n\1/;ta
在换行符后直接插入非空格或空格字符串并循环到:a
-r
开关使正则表达式更容易上手(分组(...)
,更改...|...
并且一个或多个+
的元字符被释放需要反斜杠前缀)。
答案 4 :(得分:0)
可能你想要Perl:
perl -F -lane '@rev=reverse(@F);print "@rev"' your_file
答案 5 :(得分:0)
作为Bernhard said,tac
可以在这里使用:
#!/usr/bin/env bash
set -eu
echo '1 2 3
2 3 4
3 4 5' | while IFS= read -r; do
echo -n "$REPLY " | tac -s' '
echo
done
$ ./1.sh
3 2 1
4 3 2
5 4 3
我相信我的例子更有帮助。