ffmpeg -i input.jpg output.gif
The tilde
~
matches the most recent patch version (the third number) for the specified minor version (the second number).~1.2.3
will match all1.2.x
versions but will hold off on1.3.0
.
The caret
^
is more relaxed. It matches the most recent minor version (the second number) for the specified major version (the first number).^1.2.3
will match any1.x.x
release including1.3.0
, but will hold off on2.0.0
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ellipsis { | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
word-wrap: normal; | |
overflow: hidden; | |
} |
apt-get update
—— 在修改/etc/apt/sources.list
或者/etc/apt/preferences
之後运行该命令。此外您需要定期运行这一命令以确保您的软件包列表是最新的。apt-get install packagename
——安装一个新软件包(参见下文的 aptitude )apt-get remove packagename
——卸载一个已安装的软件包(保留配置文件)apt-get –purge remove packagename
——卸载一个已安装的软件包(删除配置文件)dpkg –force-all –purge packagename
有些软件很难卸载,而且还阻止了别的软件的应用,就可以用这个,不过有点冒险。apt-get autoclean
apt会把已装或已卸的软件都备份在硬盘上,所以如果需要空间的话,可以让这个命令来删除你已经删掉的软件apt-get clean
这个命令会把安装的软件的备份也删除,不过这样不会影响软件的使用的。apt-get upgrade
——更新所有已安装的软件包apt-get dist-upgrade
——将系统升级到新版本
todo
|>
- ``
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# macOS Mojave 在非 retina 屏幕字体发虚问题 | |
defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO | |
# macOS 开启「允许任何来源的应用」 | |
sudo spctl --master-disable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# === basic === | |
brew cleanup | |
# === 更换源。在天朝,你懂得 === | |
# Coding.net 源 | |
cd "$(brew --repo)" && git remote set-url origin https://git.coding.net/homebrew/homebrew.git | |
# 重置 brew 源 | |
cd "$(brew --repo)" |