python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to use "=" in Zsh when aliasing a command
I have the following alias:
alias ls='exa --icons -H'
When using =ls, the = escapes the alias:
$ ls
Applications Documents Downloads Pictures Videos www
$ =ls
Applications Document...

Popescu Ervin
Votes: 0
Answers: 1
Why does my command stop working when I put it into an alias?
I am trying to run the following command
comm -23 <(pacman -Qqe | sort) <(awk '{print $1}' /desktopfs-pkgs.txt | sort)
I get the following output
autoconf
automake
bison
chromium
code
discord
fa...

Caleb Renfroe
Votes: 0
Answers: 1
How to create a custom tilde-like expansion
There is a folder e that I like to frequent. It is nested in /a/b/c/d/e. I was wondering if there was a way to create an alias for the folder e the same way the shell has created an alias for tilde (~...
br1ttle
Votes: 0
Answers: 0
Is it possible to have a ampersand/& in a Column alias name short of using "Define Off" or "Set Escape" in Oracle Sql?
first time poster. I am using Oracle Sql Developer as my platform.
Here is a sample script of what I would like to do:
Select
store AS "B & G"
From
saleslocations
Result(preferred...
Roland72
Votes: 0
Answers: 1