mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-18 14:47:03 +00:00
This patch implements two new hooks: alias-resolve and alias-exists. They are called during the aliases resolution process, to allow for more complex integration with other systems, such as storing the aliases in a database. See the included documentation for more details.
16 lines
138 B
Bash
Executable File
16 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
case "$1" in
|
|
"vicuña@testserver")
|
|
exit 0
|
|
;;
|
|
"ñandú@testserver")
|
|
exit 0
|
|
;;
|
|
"roto@testserver")
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
exit 1
|