网站首页 站内搜索

搜索结果

查询Tags标签: history,共有 202条记录
  • 学习笔记2:linux技巧

    文章目录 文件及操作记录隐藏SUID建立sshd的软连接用于登录文件及操作记录隐藏 1、文件建立日期更改:touch -r 已存在文件 新增文件 使用效果:新增文件日期更改为与已存在文件创建日期一致 2、文件锁定 添加锁定:chattr +i 文件 解除锁定:chattr -i 文件 查看文件状态…

    2022/1/10 7:03:52 人评论 次浏览
  • 学习笔记2:linux技巧

    文章目录 文件及操作记录隐藏SUID建立sshd的软连接用于登录文件及操作记录隐藏 1、文件建立日期更改:touch -r 已存在文件 新增文件 使用效果:新增文件日期更改为与已存在文件创建日期一致 2、文件锁定 添加锁定:chattr +i 文件 解除锁定:chattr -i 文件 查看文件状态…

    2022/1/10 7:03:52 人评论 次浏览
  • JavaScript window.history.go(-1)

    windows 对象引用不是必须的,所以:windows.history.go() == history.go() go方法 go() 方法可加载历史列表中的某个具体的页面。参数只有一个,正数或者负数。 正数:前进; 负数:后退。 history.back() 后退 history.forward() 前进window.location.reload() // …

    2022/1/5 22:03:31 人评论 次浏览
  • JavaScript window.history.go(-1)

    windows 对象引用不是必须的,所以:windows.history.go() == history.go() go方法 go() 方法可加载历史列表中的某个具体的页面。参数只有一个,正数或者负数。 正数:前进; 负数:后退。 history.back() 后退 history.forward() 前进window.location.reload() // …

    2022/1/5 22:03:31 人评论 次浏览
  • 配置环境变量,实现执行history的时候可以看到执行命令的时间。

    要想实现输入history时,看到命令的执行时间,先配置一条环境变量,如下图所示: 取消环境变量,执行history,就看不到命令的执行时间了,如下图:

    2022/1/3 23:40:40 人评论 次浏览
  • 配置环境变量,实现执行history的时候可以看到执行命令的时间。

    要想实现输入history时,看到命令的执行时间,先配置一条环境变量,如下图所示: 取消环境变量,执行history,就看不到命令的执行时间了,如下图:

    2022/1/3 23:40:40 人评论 次浏览
  • A Child's History of England.71

    Who betrayed William Wallace in the end, is not quite certain. That he was betrayed - probably by an attendant [侍从] - is too true. He was taken to the Castle of Dumbarton, under Sir John Menteith, and thence [从那里] to London, where the great fame …

    2021/12/30 23:39:05 人评论 次浏览
  • A Child's History of England.71

    Who betrayed William Wallace in the end, is not quite certain. That he was betrayed - probably by an attendant [侍从] - is too true. He was taken to the Castle of Dumbarton, under Sir John Menteith, and thence [从那里] to London, where the great fame …

    2021/12/30 23:39:05 人评论 次浏览
  • A Child's History of England.68

    King Edward being much renowned [获得声誉] for his sagacity [wisdom] and justice, it seems to have been agreed to refer [交给...处理] the dispute to him. He accepted the trust, and went, with an army, to the Border-land where England and Scotland join…

    2021/12/28 23:15:14 人评论 次浏览
  • A Child's History of England.68

    King Edward being much renowned [获得声誉] for his sagacity [wisdom] and justice, it seems to have been agreed to refer [交给...处理] the dispute to him. He accepted the trust, and went, with an army, to the Border-land where England and Scotland join…

    2021/12/28 23:15:14 人评论 次浏览
  • 在React中使用 react-router-dom 编程式路由导航的正确姿势【含V5.x、V6.x】

    ## react-router-dom 编程式路由导航 (v5) ###### 1.push跳转+携带params参数 ```jsx props.history.push(`/b/child1/${id}/${title}`);``` ###### 2.push跳转+携带search参数 ```jsxprops.history.push(`/b/child1?id=${id}&title=${title}`);``` ###### 3.push跳转…

    2021/12/18 11:21:10 人评论 次浏览
  • 在React中使用 react-router-dom 编程式路由导航的正确姿势【含V5.x、V6.x】

    ## react-router-dom 编程式路由导航 (v5) ###### 1.push跳转+携带params参数 ```jsx props.history.push(`/b/child1/${id}/${title}`);``` ###### 2.push跳转+携带search参数 ```jsxprops.history.push(`/b/child1?id=${id}&title=${title}`);``` ###### 3.push跳转…

    2021/12/18 11:21:10 人评论 次浏览
  • linux history 显示时间及用户

    一、设置系统环境变量 #只在当前环境下 生效 输入#export HISTTIMEFORMAT=%F %T ,重启后此命令失效 显示时间,并重启生效 echo export HISTTIMEFORMAT="%F %T " >> /etc/profile && source /etc/profile 显示用户及时间 并重启生效 echo expor…

    2021/12/18 7:19:30 人评论 次浏览
  • linux history 显示时间及用户

    一、设置系统环境变量 #只在当前环境下 生效 输入#export HISTTIMEFORMAT=%F %T ,重启后此命令失效 显示时间,并重启生效 echo export HISTTIMEFORMAT="%F %T " >> /etc/profile && source /etc/profile 显示用户及时间 并重启生效 echo expor…

    2021/12/18 7:19:30 人评论 次浏览
  • mysql数据库收缩

    使用过MySQL的同学,刚开始接触最多的莫过于MyISAM表引擎了,这种引擎的数据库会分别创建三个文件:表结构、表索引、表数据空间。我们可以将某个数据库目录直接迁移到其他数据库也可以正常工作。 然而当你使用InnoDB的时候,一切都变了。InnoDB 默认会将所有的数据库Inno…

    2021/12/18 2:20:56 人评论 次浏览
扫一扫关注最新编程教程