﻿# SSH Alias configuration file

# Keep your alias configuration in 'aliases' file. See https://rebex.net/buru-sftp-server/doc/ssh-shell-aliases for more details

# ALIAS=COMMAND [ARG1 [ARG2 ...]]
# $0 - alias self-reference
# $1 .. $9 - positional parameters
# $@, $* - parameter expansion

# EXAMPLES
foo=C:\foo.exe "$1"
# foo "Hello world!" => C:\foo.exe "Hello world!"

cmd=cmd.exe /c "$@"
# cmd "dir /s" => cmd.exe /c "dir /s"

whatever="$@"
# whatever git status => "git" "status"
 
