Skip to main content
Filter by
Sorted by
Tagged with
3 votes
2 answers
980 views

How can I do a alias in powershell to start notepad++ have Start notepad++ and have alias i wanna combinate that set-alias -name notepad -value start notepad++ but i get this error Set-Alias : A ...
Tibor's user avatar
  • 37
0 votes
1 answer
395 views

I have been given a csv with 2 columns one headed samaccountname and the other proxyaddresses I run this script to add the proxyaddresses to the accounts in the csv and it fails, any ideas why please? ...
Ian Sawyer's user avatar
0 votes
2 answers
308 views

For learning purposes, I would like to automatically print out the aliases I use each time I run them. My hope is that it will help me learn what some of the useful flags involved in the commands do, ...
shafe's user avatar
  • 179
0 votes
1 answer
61 views

I have been trying to alias the following command for removing tracked files from the repository: > git config --system alias.untrack 'rm --cached' However when I check the configuration, the ...
Daneel Olivaw's user avatar
0 votes
0 answers
40 views

I'm having an alias to look for lines that set value of variables in Tcl like this: alias vgrep 'grep -rn "set\s\+\!:1\s\+"' Let's say I have a test.tcl file like: set result 0 set RESULT 1 ...
Duy Thuận Võ's user avatar
0 votes
0 answers
59 views

I have a django cookie cutter with docker project and the cli prefix for executing commands is docker compose -f docker-compose.yml run --rm django python manage.py. As you can see this is very long ...
Kevin B.'s user avatar
  • 121
1 vote
0 answers
23 views

I have an Apache 2.4 server running, in which I have configured an alias, which redirects to another folder on another disk on the server where I have files (pdfs, images, etc.). The problem is that ...
martin.softpro's user avatar
0 votes
0 answers
49 views

Is there a way to obtain Type of base class template argument without "typedef's, aliases and using"? Here is my code... I know i could define public "using Type = T" in my Class A ...
Miroslav Krajcir's user avatar
1 vote
2 answers
167 views

I read here and here that Python methods can be aliased using =. However, when I try it on the __init__ method, it doesn't seem to work. class MyClass: def __init__(self): print("Hi ...
Harry's user avatar
  • 946
0 votes
1 answer
31 views

I'm a bit confused how to best handle the following scenario with Elasticsearch. I've different types of documents, which have fields with semantically the same content but different field names (see ...
Alex Schmidt's user avatar
0 votes
1 answer
85 views

I am trying to initialize my template class with a type alias as template parameter, but only the specialized version of my class is created. I understand the problem is in the ambiguity of my aliases....
Miroslav Krajcir's user avatar
2 votes
4 answers
659 views

I'm creating an API automation suite with Cypress. I have API tests which don't require logging in, and ones that do. I have written a utility method called 'callAPI' which all my tests will use - it ...
Zuno's user avatar
  • 465
0 votes
0 answers
69 views

I am trying to point my alias to a new index. Before I associate my alias with the index, I want to remove all existing associations for that alias. This is what I am doing: POST /_aliases { "...
Yunus Kilic's user avatar
0 votes
1 answer
84 views

What is the purpose of the alias definition of type aliasing struct type __variant_idx_cookie itself in following struct definition of __variant_idx_cookie? struct __variant_idx_cookie { using type =...
cpp's user avatar
  • 331
0 votes
0 answers
101 views

I have a situation where the code I'm working with creates a temporary database table that contains a record store. As the application has grown, the calculations required to build the temporary ...
Ben Holness's user avatar
  • 2,745
0 votes
0 answers
64 views

I created an alias using the command: POST /_aliases { "actions": [ { "add": { "index": "books", "alias": "combined-...
Murtazali's user avatar
0 votes
0 answers
58 views

Good afternoon. Please tell me, maybe someone has encountered this. I have a website with the domain site-testing.com. I have set up an alias for this site - site-testing.info. There is a route - ...
dev_2108's user avatar
0 votes
1 answer
2k views

One more problem with path aliases. They work perfectly everywhere, but not for electron files. In vite.config.ts I have resolve: {alias: {"@": "/src"}} and (part) of the project ...
SiliconValley's user avatar
0 votes
1 answer
2k views

I would like to reference the same namespace from dll1 and alias dll2 to have like a prefix. So in this example, I would have to different projects: namespace1 DoOperationFirstWay(){LoadedLib.Type1..}...
maxfridbe's user avatar
  • 6,000
0 votes
1 answer
2k views

When I run Kubernetes commands, Powershell is wanting me to use the path to the kubectl.exe instead of just using the command kubectl. I'm told using an Alias would work but I'm not sure how to do ...
burntcookie's user avatar
2 votes
1 answer
232 views

nvm use default The alias "default" leads to an infinite loop. Aborting. .. the alias is pointing to v14.21.1 trying to reset the alias tried to set it again ... nvm alias ...
M.N's user avatar
  • 59
-1 votes
1 answer
128 views

I want to setup bash alias that runs command_1 [args] if command_1 exists and "runnable", or runs command_2 [args] if command_1 does not exists or not "runnable". [args] are not ...
AntonioK's user avatar
  • 738
-3 votes
2 answers
440 views

I have a lot of stored procedures in my database. Now I want to find the stored procedure that has "movaghe" in the name of one of its aliases. Of course, I used the following command but it ...
majid's user avatar
  • 29
0 votes
2 answers
74 views

I do not understand what happens here. What I try to achieve: When I call an alias I would like to have output who and where called this, like the CLI does output the actually commands behind the ...
cottton's user avatar
  • 1,627
0 votes
1 answer
204 views

I have the following command: fd --type f -0 --full-path $HOME/something/something_inside_something | fzf --read0 --print0 --exit-0 --preview 'bat {1}' | xargs -r -0 vim Where vim is an alias of: ...
Vikare's user avatar
  • 23

1 2
3
4 5
94