首页 > TAG信息列表 > ssx

busybox 对suid的支持

开启 busybox对suid的支持 $ chmod u+s /bin/busybox $ cat /etc/busybox.conf [SUID] echo = ssx root.root

洛谷P1443 马的遍历 题解 bfs dfs

方法:bfs 先放AC代码: #include<iostream> #include<queue> #include<algorithm> using namespace std; typedef pair<int, int> PII; #define x first #define y second int dx[] = { -2,-1,1,2,2,1,-1,-2 }, dy[] = { 1,2,2,1,-1,-2,-2,-1 }; const int

Linux基础-命令查找命令

locate -- 查找文件或者目录 [root@localhost ssx-test]# locate /etc/passwd /etc/passwd /etc/passwd- 搜索/etc目录下所有以pass开头的文件 [root@localhost ssx-test]# locate /etc/pass /etc/passwd /etc/passwd- 搜索/etc目录下所有以sh开头的文件 [root@localhost ssx-test

Linux基础-文件管理命令

文件管理命令: touch: 创建或更新文件时间 创建文件 [root@bogon ssx-linux]# touch file{1..6} [root@bogon ssx-linux]# ls a b c d e file1 file2 file3 file4 file5 file6 [root@bogon ssx-linux]# touch file{a,b,c} [root@bogon ssx-linux]# ls a b c d e file1 file2 file