├── .github ├── FUNDING.yml └── workflows │ └── test-build.yml ├── .gitignore ├── README.md ├── debian ├── .gitignore ├── NEWS ├── changelog ├── control ├── copyright ├── gbp.conf ├── grml-etc-core.links ├── grml-etc-core.lintian-overrides ├── grml-etc-core.maintscript ├── grml-etc-core.manpages ├── install ├── postrm ├── preinst ├── rules └── source │ └── format ├── doc ├── Makefile └── grmlzshrc.adoc ├── etc ├── grml │ ├── lsb-functions │ ├── screen_multisession │ ├── screenrc │ ├── screenrc_generic │ ├── script-functions │ └── sysexits-sh ├── grml_colors ├── grml_nocolors ├── minimal-shellrc ├── skel │ ├── .emacs │ ├── .gitconfig │ ├── .hgrc │ ├── .vim │ │ ├── ftplugin │ │ │ └── c.vim │ │ ├── klammerpaare.vim │ │ ├── plugin │ │ │ └── DirDiff.vim │ │ └── spellfile.add │ └── .zshrc ├── tmux.conf ├── vim │ └── vimrc └── zsh │ ├── keephack │ ├── zlogin │ ├── zprofile │ ├── zshenv │ └── zshrc ├── manpages └── grml-scripts-core.1 ├── usr_bin ├── cpu-screen └── ip-screen └── usr_share_grml └── zsh ├── completion ├── debian │ └── _debian_rules ├── grml │ └── _grml-wallpaper ├── linux │ ├── _fbset │ └── _iwconfig └── unix │ ├── _hl_complete │ └── _lookup └── functions ├── Lookup ├── Backends │ ├── LOOKUP_be_cpan │ ├── LOOKUP_be_deb_bts │ ├── LOOKUP_be_deb_msgid │ ├── LOOKUP_be_deb_patchtrack │ ├── LOOKUP_be_deb_pts │ ├── LOOKUP_be_dsc │ ├── LOOKUP_be_filewatcher │ ├── LOOKUP_be_freshmeat │ ├── LOOKUP_be_gmane │ ├── LOOKUP_be_google │ ├── LOOKUP_be_grml_bts │ ├── LOOKUP_be_koders │ ├── LOOKUP_be_leo │ ├── LOOKUP_be_letssingit │ ├── LOOKUP_be_rfc │ ├── LOOKUP_be_sourceforge │ ├── LOOKUP_be_usenet │ ├── LOOKUP_be_wikipedia │ └── LOOKUP_be_zsh_mla ├── LOOKUP_browser ├── LOOKUP_context ├── LOOKUP_encode ├── LOOKUP_guard ├── LOOKUP_help ├── LOOKUP_hook ├── LOOKUP_parseopts ├── LOOKUP_query_handler └── lookupinit ├── exirename ├── grml └── grml-wallpaper ├── hl ├── ipv6-tunnel ├── linenr ├── lsdisk ├── minimal-shell ├── purge ├── readme ├── urldecode └── weather /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: grml 2 | -------------------------------------------------------------------------------- /.github/workflows/test-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/.github/workflows/test-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/README.md -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/NEWS -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/gbp.conf -------------------------------------------------------------------------------- /debian/grml-etc-core.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/grml-etc-core.links -------------------------------------------------------------------------------- /debian/grml-etc-core.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/grml-etc-core.lintian-overrides -------------------------------------------------------------------------------- /debian/grml-etc-core.maintscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/grml-etc-core.maintscript -------------------------------------------------------------------------------- /debian/grml-etc-core.manpages: -------------------------------------------------------------------------------- 1 | doc/grmlzshrc.5 2 | manpages/*.1 3 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/install -------------------------------------------------------------------------------- /debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/postrm -------------------------------------------------------------------------------- /debian/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/preinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/grmlzshrc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/doc/grmlzshrc.adoc -------------------------------------------------------------------------------- /etc/grml/lsb-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/grml/lsb-functions -------------------------------------------------------------------------------- /etc/grml/screen_multisession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/grml/screen_multisession -------------------------------------------------------------------------------- /etc/grml/screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/grml/screenrc -------------------------------------------------------------------------------- /etc/grml/screenrc_generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/grml/screenrc_generic -------------------------------------------------------------------------------- /etc/grml/script-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/grml/script-functions -------------------------------------------------------------------------------- /etc/grml/sysexits-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/grml/sysexits-sh -------------------------------------------------------------------------------- /etc/grml_colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/grml_colors -------------------------------------------------------------------------------- /etc/grml_nocolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/grml_nocolors -------------------------------------------------------------------------------- /etc/minimal-shellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/minimal-shellrc -------------------------------------------------------------------------------- /etc/skel/.emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/skel/.emacs -------------------------------------------------------------------------------- /etc/skel/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/skel/.gitconfig -------------------------------------------------------------------------------- /etc/skel/.hgrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/skel/.hgrc -------------------------------------------------------------------------------- /etc/skel/.vim/ftplugin/c.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/skel/.vim/ftplugin/c.vim -------------------------------------------------------------------------------- /etc/skel/.vim/klammerpaare.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/skel/.vim/klammerpaare.vim -------------------------------------------------------------------------------- /etc/skel/.vim/plugin/DirDiff.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/skel/.vim/plugin/DirDiff.vim -------------------------------------------------------------------------------- /etc/skel/.vim/spellfile.add: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/skel/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/skel/.zshrc -------------------------------------------------------------------------------- /etc/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/tmux.conf -------------------------------------------------------------------------------- /etc/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/vim/vimrc -------------------------------------------------------------------------------- /etc/zsh/keephack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/zsh/keephack -------------------------------------------------------------------------------- /etc/zsh/zlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/zsh/zlogin -------------------------------------------------------------------------------- /etc/zsh/zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/zsh/zprofile -------------------------------------------------------------------------------- /etc/zsh/zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/zsh/zshenv -------------------------------------------------------------------------------- /etc/zsh/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/etc/zsh/zshrc -------------------------------------------------------------------------------- /manpages/grml-scripts-core.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/manpages/grml-scripts-core.1 -------------------------------------------------------------------------------- /usr_bin/cpu-screen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_bin/cpu-screen -------------------------------------------------------------------------------- /usr_bin/ip-screen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_bin/ip-screen -------------------------------------------------------------------------------- /usr_share_grml/zsh/completion/debian/_debian_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/completion/debian/_debian_rules -------------------------------------------------------------------------------- /usr_share_grml/zsh/completion/grml/_grml-wallpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/completion/grml/_grml-wallpaper -------------------------------------------------------------------------------- /usr_share_grml/zsh/completion/linux/_fbset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/completion/linux/_fbset -------------------------------------------------------------------------------- /usr_share_grml/zsh/completion/linux/_iwconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/completion/linux/_iwconfig -------------------------------------------------------------------------------- /usr_share_grml/zsh/completion/unix/_hl_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/completion/unix/_hl_complete -------------------------------------------------------------------------------- /usr_share_grml/zsh/completion/unix/_lookup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/completion/unix/_lookup -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_cpan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_cpan -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_bts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_bts -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_msgid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_msgid -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_patchtrack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_patchtrack -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_deb_pts -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_dsc -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_filewatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_filewatcher -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_freshmeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_freshmeat -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_gmane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_gmane -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_google -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_grml_bts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_grml_bts -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_koders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_koders -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_leo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_leo -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_letssingit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_letssingit -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_rfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_rfc -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_sourceforge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_sourceforge -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_usenet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_usenet -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_wikipedia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_wikipedia -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_zsh_mla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/Backends/LOOKUP_be_zsh_mla -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/LOOKUP_browser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/LOOKUP_browser -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/LOOKUP_context: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/LOOKUP_context -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/LOOKUP_encode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/LOOKUP_encode -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/LOOKUP_guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/LOOKUP_guard -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/LOOKUP_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/LOOKUP_help -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/LOOKUP_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/LOOKUP_hook -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/LOOKUP_parseopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/LOOKUP_parseopts -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/LOOKUP_query_handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/LOOKUP_query_handler -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/Lookup/lookupinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/Lookup/lookupinit -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/exirename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/exirename -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/grml/grml-wallpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/grml/grml-wallpaper -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/hl -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/ipv6-tunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/ipv6-tunnel -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/linenr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/linenr -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/lsdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/lsdisk -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/minimal-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/minimal-shell -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/purge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/purge -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/readme -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/urldecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/urldecode -------------------------------------------------------------------------------- /usr_share_grml/zsh/functions/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grml/grml-etc-core/HEAD/usr_share_grml/zsh/functions/weather --------------------------------------------------------------------------------