Top "Alias" questions

An alias is an alternative name.

How can I write a PowerShell alias with arguments in the middle?

I'm trying to set up a Windows PowerShell alias to run MinGW's g++ executable with certain parameters. However, these parameters …

powershell g++ alias
Table Variables with an Alias in a Delete From Statement

I want to delete rows from a SQL Server 2000/2005 table variable based on the presence of other rows in the …

sql sql-server alias
How to embed bash script directly inside a git alias

Can I embed the following bash shell code: for name in $(git diff --name-only $1); do git difftool $1 $name & done …

git bash shell alias
Cannot edit bash_profile on Mac OsX

I am using MacOSX Snow Leopard 10.6.8.... I am the only user on this machine and I should be admin. I …

macos permissions osx-snow-leopard alias .bash-profile
XStream Alias of List root elements

I want to be able to alias the root list element depending upon what type of objects are contained in …

java xml list alias xstream
DELETE FROM `table` AS `alias` ... WHERE `alias`.`column` ... why syntax error?

I tried this with MySQL: DELETE FROM `contact_hostcommands_relation` AS `ContactHostCommand` WHERE (`ContactHostCommand`.`chr_id` = 999999) LIMIT 1 And I get …

mysql sql syntax alias
Is inject the same thing as reduce in ruby?

I saw that they were documented together here. Are they the same thing? Why does Ruby have so many aliases (…

ruby alias reduce inject
Using a 'using alias = class' with generic types?

So sometimes I want to include only one class from a namespace rather than a whole namespace, like the example …

c# .net generics alias
tsconfig paths not working

I'm trying to do something very similar to the jquery path example in the documentation, but TS keeps throwing TS2307 (…

typescript alias tsconfig typescript2.9
JavaScript function aliasing doesn't seem to work

I was just reading this question and wanted to try the alias method rather than the function-wrapper method, but I …

javascript function closures alias