如何在文件开头插入文本?
- 2024-10-12 11:51:00
- admin 原创
- 94
问题描述:
到目前为止,我已经能够找到如何在文件开头添加一行,但这并不是我想要的。我将通过一个例子来展示它:
文件内容
some text at the beginning
结果
<added text> some text at the beginning
它很相似,但我不想用它创建任何新的线路......
如果可能的话我想这么做sed
。
解决方案 1:
sed
可以对地址进行操作:
$ sed -i '1s/^/<added text> /' file
1s
您在每个答案中看到的这个神奇之处是什么?行寻址!。
想要添加<added text>
前 10 行吗?
$ sed -i '1,10s/^/<added text> /' file
或者你可以使用Command Grouping
:
$ { echo -n '<added text> '; cat file; } >file.new
$ mv file{.new,}
解决方案 2:
如果您想在文件开头添加一行,则需要`
`在上面的最佳解决方案中的字符串末尾添加。
最好的解决方案是添加字符串,但是使用字符串,它不会在文件末尾添加一行。
sed -i '1s/^/your text
/' file
解决方案 3:
如果文件只有一行,可以使用:
sed 's/^/insert this /' oldfile > newfile
如果超过一行,则为以下之一:
sed '1s/^/insert this /' oldfile > newfile
sed '1,1s/^/insert this /' oldfile > newfile
我添加了后者,以便您了解如何处理行范围。这两个方法都会用您要插入的文本“替换”受影响行上的起始行标记。您还可以(假设您的sed
版本足够现代)使用:
sed -i 'whatever command you choose' filename
进行就地编辑。
解决方案 4:
使用子shell:
echo "$(echo -n 'hello'; cat filename)" > filename
不幸的是,命令替换将删除文件末尾的换行符。为了保留它们,可以使用:
echo -n "hello" | cat - filename > /tmp/filename.tmp
mv /tmp/filename.tmp filename
不需要分组,也不需要命令替换。
解决方案 5:
仅插入换行符:
sed '1i\\'
解决方案 6:
您可以使用cat -
printf '%s' "some text at the beginning" | cat - filename
解决方案 7:
我的看法:
sed -i '1i /path/of/file.sh' filename
/path/of/file.sh
您要添加的文本在哪里。
即使字符串包含正斜杠,此方法也能起作用"/"
解决方案 8:
要在文件顶部添加一行:
sed -i '1iText to add\'
解决方案 9:
嗨,回车:
sed -i '1s/^/your text
/' file
解决方案 10:
请注意,在 OS X 上,sed -i <pattern> file
会失败。但是,如果您提供备份扩展,sed -i old <pattern> file
,则会在创建file
时就地修改。然后您可以在脚本中删除。file.old
`file.old`
解决方案 11:
有一个非常简单的方法:
echo "your header" > headerFile.txt
cat yourFile >> headerFile.txt
解决方案 12:
问题:在文件顶部用父目录的基本名称标记文件。
即
/mnt/Vancouver/Programming/file1
file1
用标记 的顶部Programming
。
解决方案 1——非空文件:
bn=${PWD##*/} ## bn: basename
sed -i '1s/^/'"$bn"'
/' <file>
1s
将文本放在文件的第 1 行。
解决方案 2——空文件或非空文件:
上述命令sed
在空文件上失败。以下是基于https://superuser.com/questions/246837/how-do-i-add-text-to-the-beginning-of-a-file-in-bash/246841#246841的解决方案
printf "${PWD##*/}
" | cat - <file> > temp && mv -f temp <file>
请注意,-
cat 命令中的 是必需的(读取标准输入:有关详细信息,请参阅)。我认为,这里需要获取 printf 语句的输出(到 STDIN),并将其和文件 cat 到 temp ... 另请参阅http://www.linfo.org/cat.htmlman cat
底部的说明。
我还添加了-f
命令mv
,以避免在覆盖文件时被要求确认。
要对目录进行递归:
for file in *; do printf "${PWD##*/}
" | cat - $file > temp && mv -f temp $file; done
还要注意,这将破坏带有空格的路径;对于这些问题,在其他地方有解决方案(例如文件通配符或find . -type f ...
-type 解决方案)。
附录: 回复:我的最后一条评论,该脚本将允许您递归路径中带有空格的目录:
#!/bin/bash
## https://stackoverflow.com/questions/4638874/how-to-loop-through-a-directory-recursively-to-delete-files-with-certain-extensi
## To allow spaces in filenames,
## at the top of the script include: IFS=$'
'; set -f
## at the end of the script include: unset IFS; set +f
IFS=$'
'; set -f
# ----------------------------------------------------------------------------
# SET PATHS:
IN="/mnt/Vancouver/Programming/data/claws-test/corpus test/"
# https://superuser.com/questions/716001/how-can-i-get-files-with-numeric-names-using-ls-command
# FILES=$(find $IN -type f -regex ".*/[0-9]*") ## recursive; numeric filenames only
FILES=$(find $IN -type f -regex ".*/[0-9 ]*") ## recursive; numeric filenames only (may include spaces)
# echo '$FILES:' ## single-quoted, (literally) prints: $FILES:
# echo "$FILES" ## double-quoted, prints path/, filename (one per line)
# ----------------------------------------------------------------------------
# MAIN LOOP:
for f in $FILES
do
# Tag top of file with basename of current dir:
printf "[top] Tag: ${PWD##*/}
" | cat - $f > temp && mv -f temp $f
# Tag bottom of file with basename of current dir:
printf "
[bottom] Tag: ${PWD##*/}
" >> $f
done
unset IFS; set +f
解决方案 13:
只是为了好玩,这里有一个解决方案ed
,它不会出现无法处理空文件的问题。您可以像这个问题的任何其他答案一样将其放入 shell 脚本中。
ed Test <<EOF
a
.
0i
<added text>
.
1,+1 j
$ g/^$/d
wq
EOF
上述脚本将要插入的文本添加到第一行,然后连接第一行和第二行。为了避免 ed 因无效连接而退出,它首先在文件末尾创建一个空白行,然后如果仍然存在则将其删除。
限制:<added text>
如果正好等于一个句点,则此脚本不起作用。
解决方案 14:
我发现的最简单的解决方案是:
echo -n "<text to add>" | cat - myFile.txt | tee myFile.txt
笔记:
| tee myFile.txt
如果不想更改文件内容,请删除。-n
如果要附加整行,请删除该参数。&> /dev/null
如果您不想看到输出(生成的文件),请添加到末尾。这可用于将 shebang 附加到文件。例如:
# make it executable (use u+x to allow only current user)
chmod +x cropImage.ts
# append the shebang
echo '#''!'/usr/bin/env ts-node | cat - cropImage.ts | tee cropImage.ts &> /dev/null
# execute it
./cropImage.ts myImage.png
解决方案 15:
echo -n "text to insert " ;tac filename.txt| tac > newfilename.txt
第一个tac
命令将文件反向排列(最后一行在前),这样“要插入的文本”就会出现在最后。第二个命令tac
再次换行,这样插入的行就会出现在开头,而原始文件仍按其原始顺序排列。
解决方案 16:
cat
连接多个文件。<()
将命令的输出作为文件发送。使用 -n 开关时,echo 不会添加新行。使用 -c 开关的 head 命令可以删除文件中的尾随换行符。结合所有这些,我们可以在文件的开头和结尾插入文本,而无需任何换行符,
cat <(echo -n "line before the file") <(head -c -1 file.txt) <(echo -n "line after the file")
解决方案 17:
感谢以上所有最佳答案,仅提供一点提示:
对于sed
方法,如果您想在转到换行符时传递变量,就像我想要对我的/etc/hosts
文件执行的操作一样,请不要忘记使用双引号"
`sed -i "1s/^/127.0.0.1 $HOSTNAME
/" /etc/hosts`
解决方案 18:
另一个解决方案是使用别名。添加到您的 init rc/env 文件中:
addtail () { find . -type f ! -path "./.git/*" -exec sh -c "echo $@ >> {}" ; }
addhead () { find . -type f ! -path "./.git/*" -exec sh -c "sed -i '1s/^/$@
/' {}" ; }
用法:
addtail "string to add at the beginning of file"
addtail "string to add at the end of file"
解决方案 19:
使用这种echo
方法,如果你和我一样使用 macOS/BSD,就不用-n
像其他人建议的那样使用 switch 了。我喜欢为文本定义一个变量。
因此它会是这样的:
Header="my complex header that may have difficult chars \"like these quotes\" and line breaks
"
{ echo "$Header"; cat "old.txt"; } > "new.txt"
mv new.txt old.txt
解决方案 20:
总结
考虑使用ex
。由于您想要给定行的开头,因此语法基本上与您可能找到的语法相同,sed
但“就地编辑”选项是内置的。
我无法想象有sed
但没有ex
/ 的环境vi
,除非它是一个带有某些特殊“sed.exe”的 MS Windows 机器。
sed
&grep
是从ex
/演变而来的vi
,因此最好说它sed
的语法与 相同ex
。
您可以将行号更改为 #1 以外的其他数字,或者搜索某一行并进行更改。
source=myFile.txt
Front="This goes IN FRONT "
man true > $source
ex -s ${source} <<EOF
1s/^/$Front/
wq
EOF
$ head -n 3 $source
This goes IN FRONT TRUE(1) User Commands TRUE(1)
NAME
我推荐长版本ex
(或者ed
如果你是一个很酷的孩子)。
我喜欢ex
它是因为它具有可移植性、功能极其强大、允许我就地编写和/或进行备份,而不需要 GNU(甚至 BSD)扩展。
此外,如果你知道ex
方法,那么你就知道怎么做vi
- 并且可能vim
这就是你的难题。请注意,EOF
当我们使用“i”nsert 并使用时,不会引用echo
:
str="+++ TOP +++" && ex -s <<EOF
r!man true
1i
`echo "$str"`
.
"0r!echo "${str}"
wq! true.txt
EOF
0r!echo "${str}"
也可能用作:0read!
或的简写,您可能在模式:0r!
中使用过(它实际上是同一件事),但这里是可选的,并且一些实现不支持“读”地址为零。直接“读”到特殊行#0(或从第 1 行)会自动将所有内容“向下”推,然后您只需保存更改。vi
`:`:wq
$ head -n 3 true.txt | nl -ba
1 +++ TOP +++
2 TRUE(1) User Commands TRUE(1)
3
此外,大多数经典sed
实现并没有默认应该有的扩展(如U&
) 。ex
解决方案 21:
find . -name "*prod*" -exec sed -i '1iline1
Line2
Line3
' {} ;
我用它来解决这个问题。
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件