mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
4 lines
341 B
JavaScript
4 lines
341 B
JavaScript
export const sh = /(?:ba)?sh: ((?:file:\/\/)|(?:\/\/))?(.*): (?:(?:command not found)|(?:No such file or directory))/;
|
|
export const bash = sh;
|
|
export const zsh = /zsh: (?:(?:command not found)|(?:no such file or directory)): ((?:file:\/\/)|(?:\/\/))?([^\n]+)/;
|
|
export const fish = /fish: Unknown command '((?:file:\/\/)|(?:\/\/))?([^']+)'/;
|