使用unix命令将字符追加到out

ig9co6j1  于 2022-11-04  发布在  Unix
关注(0)|答案(2)|浏览(156)

输出为:

05

我想在输出(05/)的末尾加一个“/”。有人能帮忙吗?

6kkfgxo0

6kkfgxo01#

尝试

echo 20220506 | cut -c5-6 | sed 's/$/\//'

Sed是流编辑器,s/$/\//表示

s : substitute
$ : end of line
\/ : / escaped with \
other slashes (/) : separator character of parameters to substitution operator.
raogr8fs

raogr8fs2#

您可以使用反勾号在另一个命令中计算命令,而不是使用管道符|

echo `echo 20220506 | cut -c5-6`/

> 05/

相关问题