shell实现进度条 #!/bin/bashi=0while [[ $i -lt 100 ]]; do let "i++" printf "\r%-3d%%" $i for (( j = 0; j < $i; j++…
shell速查 指定解释器 例如 #!/bin/bash 还可以指定php #!/usr/bin/php 常见的shell解释器有 Bourne Shell(/usr/bin/sh或/bin/sh) Bourne Again Shell(/…
$ sudo chmod 755 /etc/init.d/test $ cd /etc/init.d $ sudo update-rc.d test defaults 95
sudo cp /etc/rethinkdb/default.conf.sample /etc/rethinkdb/instances.d/instance1.conf sudo /etc/init.d/rethinkdb restart
systemctl disable lightdm.service
安装ssh服务 sudo apt-get install openssh-server 查看是否启动 sudo ps -e |grep ssh 如果没有启动 sudo service ssh start
隐藏文件 cmd命令 attrib +s +a +h +r 路径 cmd命令 取消 attrib -a -s -h -r 路径
remote: Counting objects: 34438, done. remote: Compressing objects: 100% (24840/24840), done. error: RPC failed; curl 18…
lookupd -flushcache 这个命令适用于Tiger或更低版本 Mac OS dscacheutil -flushcache 这个适用于Mac OS Leopard
在Mac系统中并没有Home、End等键,所以在使用时并不是特别的顺手,但是有几个键位组合可以使Terminal的操作更加灵活方便。 1、将光标移动到行首:ctrl + a 2、将光标移动到行尾:ctrl + e 3、清除屏幕: …
更多...
加载中...