1. 命令:pwd(print working directory) 作用:显示当前所在的文件夹(或目录)的位置(或叫路径)。 2. 命令:ls...
收录了6篇文章 · 116人关注
1. 命令:pwd(print working directory) 作用:显示当前所在的文件夹(或目录)的位置(或叫路径)。 2. 命令:ls...
Linux命令学习 记录小白学习Linux的过程。 常用命令 man命令 常用工具命令 man命令是Linux下的帮助指令,通过man指令可以查...
1、从firefox中提取cookie grep -oP '"url":"\K[^"]+' $(ls -t ~/.mozilla/firefox...
创建sample问价为例: [root@log ~]#cat sample.txtSample Line 1Sample Line 2Sampl...
1、清除文件中的注释 sed -i -e '/^#[^!].*/d' -e 's/\(.*[^!]\)#.*[^}]/\1/' file 2、删...
1、查找重复的文件(基于md5) find -type f -exec md5sum '{}' ';' | sort | uniq --all-...
专题公告
1、Linux中实用的shell命令行收录
2、awk、sed、grep--shell三剑客