Skip to content

Instantly share code, notes, and snippets.

View nguyenvinhlinh's full-sized avatar
💭
Hey, wait! What are you trying to looking for?

Nguyen Vinh Linh nguyenvinhlinh

💭
Hey, wait! What are you trying to looking for?
View GitHub Profile
@nguyenvinhlinh
nguyenvinhlinh / keybindings.pl
Created January 16, 2023 07:33 — forked from elgalu/keybindings.pl
Export Ubuntu shortcuts: keybindings.pl -e keys.csv ;; Import (DANGER) Ubuntu shortcuts: keybindings.pl -i keys.csv
#!/usr/bin/perl
use strict;
my $action = '';
my $filename = '-';
for my $arg (@ARGV){
if ($arg eq "-e" or $arg eq "--export"){
$action = 'export';