#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # # Filename: any # Original authors: grml-team (grml.org), (c) Michael Prokop # Modifications: Dennis Eriksen # License: This file is licensed under the GPL v2. # # Originally from the GRML zshrc file [1] # # 1: # # grep for running process, like: 'any vim' emulate -L zsh if (( ARGC != 1 )); then print -ru2 -- "$0 - grep for process(es) by keyword" print -ru2 -- "Usage: any " return 1 fi ps xauwww | grep -i "[${1:0:1}]${1:1}" # END OF FILE #################################################################