- Ctrl+P Up / Previous (
!!
) - Ctrl+N Down / Next
- Ctrl+B Left / Back
- Ctrl+F Right / Forward
- Ctrl+A Home. Sometimes used by tmux/byobu.
- Ctrl+E End
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
#!/bin/bash | |
set -euo pipefail # unofficial bash strict mode: http://redsymbol.net/articles/unofficial-bash-strict-mode/ | |
IFS=$'\n\t' | |
# By Pablo Bianchi ([email protected]) | |
# Infinit loop testing if we are onliene. When we are start beeping. | |
# (based on http://www.linuxscrew.com/2009/04/02/tiny-bash-scripts-check-internet-connection-availability/ ) | |
#~ USAGE: Just: ./testInternet.sh | |
#~ NOTES |
- Also see here
Of course Ctrl+s should be replaced with your preffix shortcut.
Shortcut | Description |
---|
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
#!/bin/bash | |
# Before used xmacrorec2 > test.macro, capturing from 0,0 to different points on screen. | |
# $ cat test-1000-1000.macro | |
# KeyStrPress Control_L | |
# KeyStrPress Shift_L | |
# KeyStrPress Print | |
# KeyStrRelease Print | |
# KeyStrRelease Shift_L | |
# KeyStrRelease Control_L |
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
#!/usr/bin/perl | |
use Modern::Perl; | |
use MARC::Record; | |
@ARGV == 2 or die "usage: $0 auths.txt auths.mrc\n"; | |
my $inf = shift(); | |
my $ouf = shift(); |
NewerOlder