init
This commit is contained in:
commit
ec53fcbe95
1905 changed files with 513762 additions and 0 deletions
14
utils/bash/specs/alias.ts
Normal file
14
utils/bash/specs/alias.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import type { CommandSpec } from '../registry.js'
|
||||
|
||||
const alias: CommandSpec = {
|
||||
name: 'alias',
|
||||
description: 'Create or list command aliases',
|
||||
args: {
|
||||
name: 'definition',
|
||||
description: 'Alias definition in the form name=value',
|
||||
isOptional: true,
|
||||
isVariadic: true,
|
||||
},
|
||||
}
|
||||
|
||||
export default alias
|
||||
Loading…
Add table
Add a link
Reference in a new issue