Created
September 14, 2015 01:13
-
-
Save JulienGenoud/5142281607a0628071c0 to your computer and use it in GitHub Desktop.
tools
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
commands : | |
open a port : | |
$/sbin/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 8389 -j ACCEPT | |
download in china : | |
$rsync --partial --progress --timeout=60000 [email protected]:/path/file . | |
mp4 to gif : | |
$ffmpeg -i file.m4v -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=1 > fille.gif | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment