python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Sed from fish to bash
I have a providers.tf containing content like:
provider "aws" {
region = "${var.region}"
assume_role {
role_arn = "${var.role_arn}"
}
}
I need to replace the ...
Mornor
Votes: 0
Answers: 2
How to bind function fish shell plugin
I'm trying to write a plugin for the fish shell but can't get it to work.
I have the following in a file called functions/codex.fish:
function create_completion
commandline -a test
end
bind \cx c...

Tom Dörr
Votes: 0
Answers: 2
disable fish shell showing env variable value on tab
Can I disable fish shell showing the values being shown on the screen when I type echo e.g $FOO .
Current I see when I do $F <tab> I see my shell shows all the environment variables with F and t...
Kamesh
Votes: 0
Answers: 1
How do I set a function to run on exit in fish shell?
I want to do some cleanup before my shell script exits, including when it's cancelled with Ctrl-C.
I tried this code (in a script.fish file):
function exit_handler --on-event fish_exit
echo exitin...
printfn
Votes: 0
Answers: 1