9,655 questions
1 vote
1 answer
48 views
Issue with Template.Json not excluding files
I have built a template project with a Template.json and this will generate the template fine ( no errors at all ) ive also managed to add some choices to the symbols that will add or hide code ...
0 votes
0 answers
48 views
Use fallback subcommand if no subcommand matches [duplicate]
I have a tool that uses Click to define its CLI interface. It uses groups to achieve a subcommand hierarchy. So, if it is mytool, we have commands like mytool edit, mytool show, mytool execute script1....
0 votes
1 answer
91 views
Why can't I see the text?
I've been trying to develop my own simple little CLI Typing Game with Curses. The menu works, but when I try to press play on it, the words aren't appearing. I could see them before but they're just ...
1 vote
0 answers
104 views
How to show outputs from the cli package in Shiny?
I have a time-consuming function with a few embedded cli messages to keep the user updated. I’m planning to include this function in a Shiny app so that the user can simply click a button and see the ...
0 votes
2 answers
109 views
Extract Linux interface name in PowerShell
I want to put the name of an existing interface in Linux into a variable so that I can use it using the variable. this is my source: Write-Output "⚙ Detecting Linux network interface..." $...
-2 votes
1 answer
73 views
Bash script on Ubuntu WSL with odd concatenation behavior using fzf and a word list [duplicate]
This script behaves perfectly fine on a real Ubuntu system. #!/bin/bash set -Eeu -o pipefail word1=$(awk '{print $2}' eff_short_wordlist_2_0.txt | fzf) echo "${word1}" word2=$(awk '{print $...
4 votes
1 answer
231 views
Why can't I create a lightweight Git tag?
I cannot create a lightweight tag in Git, only annotated (as I understand). I use the command: git tag v15.0 This should create a lightweight tag without any metadata, but instead it asks me for a ...
0 votes
1 answer
47 views
How should a Function App (Container) authenticate to GitHub via the GH CLI?
I've setup a custom container in Azure that will run a Function App, with the intention of connecting to my organisations GitHub (GHE) instance and using GH CLI pull a list of repos. I have a PAT ...