Skip to content

Commit

Permalink
revert alias.cmd changes
Browse files Browse the repository at this point in the history
  • Loading branch information
daxgames committed Apr 1, 2019
1 parent ac2082d commit 67b374a
Showing 1 changed file with 10 additions and 36 deletions.
46 changes: 10 additions & 36 deletions vendor/bin/alias.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ goto parseargument
set _x=%*
)
)

echo _x=%_x%

rem #endregion parseargument

if "%ALIASES%" neq "%CMDER_ROOT%\config\user_aliases.cmd" (
Expand All @@ -66,41 +63,18 @@ if "%ALIASES%" neq "%CMDER_ROOT%\config\user_aliases.cmd" (
)
)

:: create with multiple parameters
if [%1] == [create] (
if not [%2] == [] (
if not [%3] == [] (
set _x=%1=%2
:: if command create was submitted
set alias_name=%~2
shift
shift
echo %*
set alias_value=%*

for /f "tokens=1,2,* usebackq" %%G in (`echo %*`) do (
set alias_name=%%H
set alias_value=%%I
)
)
)
) else (
:: validate alias
echo %_x%
set x=!_x:%=^^%!
echo !_x!
for /f "delims== tokens=1,* usebackq" %%G in (`echo "!_x!"`) do (
set alias_name=%%G
set alias_value=%%H
)

:: leading quotes added while validating
set alias_name=!alias_name:~1!

:: trailing quotes added while validating
set alias_value=!alias_value:~1,-1!
:: validate alias
for /f "delims== tokens=1,* usebackq" %%G in (`echo "%_x%"`) do (
set alias_name=%%G
set alias_value=%%H
)

:: leading quotes added while validating
set alias_name=%alias_name:~1%

:: trailing quotes added while validating
set alias_value=%alias_value:~0,-1%

::remove spaces
set _temp=%alias_name: =%

Expand Down

0 comments on commit 67b374a

Please sign in to comment.