First set up your keyboard layout. For example, in Spanish:
# loadkeys es
For a list of all acceptable keymaps:
# localectl list-keymaps
| #!/bin/sh | |
| # Usage: | |
| # tabc.sh <tabbed-id> <command> | |
| # Commands: | |
| # add <window-id> - Add window to tabbed | |
| # remove <window-id> - Remove window from tabbed | |
| # list - List all clients of tabbed | |
| # |
curl to get the JSON response for the latest releasegrep to find the line containing file URLcut and tr to extract the URLwget to download itcurl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \