• 2022-01-27
linux替换命令是什么

linux的替换命令:1、利用vim中“:s/原内容/替换内容/”命令来替换内容;2、利用sed配合grep替换内容;3、利用“find -name 文件名| xargs perl -pi -e ‘s......

11