码迷,mamicode.com
首页 >  
搜索关键字:bash 快捷键    ( 26387个结果
Markdown使用
功能快捷键 撤销:Ctrl/Command + Z重做:Ctrl/Command + Y加粗:Ctrl/Command + B斜体:Ctrl/Command + I标题:Ctrl/Command + Shift + H无序列表:Ctrl/Command + Shift + U有序列表:Ctrl/Co ...
分类:其他好文   时间:2021-04-02 13:10:45    阅读次数:0
174. Dungeon Game
问题: 勇士救公主问题。 勇士从左上角[0,0]出发,要到达右下角[n-1,m-1]公主所在。 只能向右or向下移动。 格子上的数字代表:加减血。 若到达某个格子勇士血量<1那么,勇士立即死亡。游戏失败。 求,至少在出发时,勇士的初始血量是多少。 Example 1: Input: dungeon ...
分类:其他好文   时间:2021-04-02 13:09:41    阅读次数:0
shell同时执行在多个linux上
https://blog.csdn.net/weixin_33672109/article/details/92378342 #!/bin/bash if [ "$#" -ne 2 ] ; then echo "USAGE: $0 -f server_list_file cmd" exit -1 f ...
分类:系统相关   时间:2021-04-02 13:01:20    阅读次数:0
windows 任务视图
前言 用了一下windows的任务视图,真香 正文 打开任务视图 win + tab 点击桌面上的任务视图按钮 展开图片 任务视图一些好用的快捷键 多桌面相关的 创建新的虚拟桌面 win + ctrl + d 关闭当前虚拟桌面 win + ctrl + F4 切换虚拟桌面 win + ctrl + ...
分类:Windows程序   时间:2021-04-02 12:59:17    阅读次数:0
igraph相关报错
1. GLPK缺失 igraph::cluster_optimal社团检测算法依赖系统中的GLPK包。 MacOS 11.2 brew install glpk CentOS 7 wget http://download-ib01.fedoraproject.org/pub/epel/7/x86_6 ...
分类:其他好文   时间:2021-04-01 12:54:29    阅读次数:0
shell编程实现创建新用户和打包文件
shell编程实现创建新用户和打包文件 1、shell编程创建新用户 #! /bin/bash `useradd $1` `echo $2 | passwd --stdin $1` 假设这个文件的名称为test.sh,则操作方式为: ./test.sh admin 123456 其中1参为用户名,2 ...
分类:系统相关   时间:2021-03-31 12:11:52    阅读次数:0
电脑常用的快捷键
ctrl+C : 复制 ctrl+V : 粘贴 ctrl+A : 全选 ctrl+X : 剪切 ctrl+Z : 撤回 ctrl+S : 保存 ctrl+P : 打印 Alt+F4 : 关闭当前窗口 Shift+Delete : 永久删除 Win+R :打开运行窗口,输入cmd后,打开命令行窗口 W ...
分类:其他好文   时间:2021-03-31 12:07:32    阅读次数:0
linux shell命令之REPLY
vi readreply.sh #!/bin/bash#第一部分 echo -n "What is your name?"readecho "Your name is $REPLY" #已将变量的值从标准输入读到REPLY #第二部分echo -n "What is the name of your ...
分类:系统相关   时间:2021-03-30 13:53:42    阅读次数:0
shell misc
. shell逻辑表达式 #!/bin/bash FILE_BASED_ENCRYPTION="true" if [ "$FILE_BASED_ENCRYPTION" == "true" ]then echo "if: first one" || echo "if: second one"else ...
分类:系统相关   时间:2021-03-30 13:52:37    阅读次数:0
idea使用技巧之检查未使用的类、变量、方法
1.选择Analyze——》Run Inspection by Name...或者使用快捷键Ctrl+Alt+Shift+I 2.在弹框中输入:unused declaration 3.弹框默认选择 4.等待下方读条结束会自动弹出Inspection Results弹窗 5.对没有用到的方法和变量提 ...
分类:其他好文   时间:2021-03-30 13:30:44    阅读次数:0
26387条   上一页 1 ... 22 23 24 25 26 ... 2639 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!