Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 Textwrangler 从文件中删除第 1 行到第 41839 行。有没有一种简单的方法可以做到这一点,而不必手动突出显示所有 41000 行。
如果您的 TextWrangler 版本允许,请搜索
\A(.*\r){1,41839}
否则,位于文件的开头,继续
^(.*\r){1,41839}
替换任何一个,应该有效,不是吗?
或者在合适的外壳中
sed '1,41839d' t.txt