👩💻 Join our community of thousands of amazing developers!
Emacs scripts for bash-related tasks which could benefit from search and autocompletion 1 2 3 4 5 6 7 8 9 (require 'my-utils) (require 'my-nix) ;; lsof -i :55555 ;; (port2pid 55555) (defun port2process (port) (sh-notty (concat "lsof -i:" (str port)))) (defalias 'portgrep 'port2process) (defalias 'port2pid 'port2process) (port2pid 55555)...