This file contains hidden or 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
# My system: | |
$ rpm -q centos-release | |
centos-release-7-9.2009.0.el7.centos.x86_64 | |
$ sudo yum check-update | |
$ sudo yum -y install autoconf automake pkg-config libevent-devel ncurses-devel | |
$ sudo yum groupinstall "Development tools" | |
Then follow the instructions in the "From version control" section on https://github.com/tmux/tmux |
This file contains hidden or 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
use strict; | |
use warnings; | |
use JSON; | |
use Getopt::Long; | |
my %options; | |
GetOptions(\%options, | |
'help', | |
'reverse|r', # Mimetype to list of extensions. Default is to print Extensions to list of Mimetypes | |
) or die $!; |
This file contains hidden or 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
{ | |
"123": [ | |
"application/vnd.lotus-1-2-3" | |
], | |
"3dm": [ | |
"x-world/x-3dmf" | |
], | |
"3dmf": [ | |
"x-world/x-3dmf" | |
], |
This file contains hidden or 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
{ | |
"aapplication/octet-stream": [ | |
"saveme" | |
], | |
"applicaiton/x-bytecode.python": [ | |
"pyc" | |
], | |
"application/acad": [ | |
"dwg" | |
], |