This can't be done using cut
. According to the man page:
Selected input is written in the same order that it is read, and is
written exactly once.
Patching cut
has been proposed many times, but even complete patches have been rejected.
Instead, you can do it using awk
, like this:
awk '{print($2,"",$1)}' abcd.txt
Replace the
with whatever you're using as field separator.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…