ICode9

精准搜索请尝试: 精确搜索
  • busybox 对suid的支持2022-03-21 02:05:40

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

  • 洛谷P1443 马的遍历 题解 bfs dfs2021-02-05 21:29:44

    方法: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基础-命令查找命令2019-11-12 11:03:11

    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基础-文件管理命令2019-11-08 19:02:50

    文件管理命令: 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

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有