Shell
A shell is a text-based terminal, used for manipulating programs and files. Shell scripts typically manage program execution.
Here are 9,772 public repositories matching this topic...
-
Updated
May 27, 2020 - C
The spec says:
If a client has access to environment variables, several standard ones exist to specify the language in which a client should operate. If not, then clients MUST make reasonable assumptions based on the information provided by the environment in which they operate (e.g. consulting navigator.languages in a browser, etc.).
Windows systems do have environment variables, but the
TODO
- Dynamic variable naming.
- Internal variables.
- Turn the non-functions into functions.
- This is so tests can be written.
- It also shows a working use case for the task.
- Add a
CONTRIBUTING.md
. - Look into side effects of using
shopt
andset
. -
/dev/tcp
- Convert to
pdf
- Add a cover.
- Add references.
- Write some
In raising this issue, I confirm the following: {please fill the checkboxes, e.g: [X]}
- I have read and understood the contributors guide.
- The issue I am reporting can be replicated.
- The issue I am reporting isn't a duplicate (see FAQs, [closed issues](htt
For new checks and feature suggestions
-
shellcheck.net (i.e. the latest commit) currently gives no useful warnings about this - I searched through https://github.com/koalaman/shellcheck/issues and didn't find anything related
I can't check shellcheck.net because it requires JavaScript.
Here's a snippet or screenshot that shows the problem:
#!/bin/sh
set +x
-
Updated
May 20, 2019 - TypeScript
Summary of the new feature/enhancement
Back in Powershell 5, I could write a script which contained:
> $cred = Get-Credential -UserName "$first.$last"
A dialog would then appear, asking for the password, but it also gave the option of changing what the username was. This was useful as you could implement a naming standard, but when there was an edge case allowed the end
From https://github.com/kennethreitz/autoenv :
Note: you should probably use direnv instead. Simply put, it is higher quality software. But, autoenv is still great, too. Maybe try both? :)
When singular items are missing we say "does not exist" or doesn't exist".
When singular items are present we say "does exist" or "exists".
Yes, English can be difficult.
https://github.com/acmesh-official/acme.sh/search?q=%22doesn%27t+exists%22&unscoped_q=%22doesn%27t+exists%22
Text says "doesn't exists".
Ref also : https://github.com/acmesh-official/acme.sh/search?q=%22does+not+exists%22&
-
Updated
May 7, 2020 - Shell
Is your feature request related to a problem? Please describe.
Check for Zsh version for compatibility with prompt.
Describe the solution you'd like
autoload -Uz is-at-least && if ! is-at-least 5.2; then
print "ERROR: You're using zsh version ${ZSH_VERSION}, and versions < 5.2 are not supported. Update your zsh." >&2
return 1
fi
Solaris and Illumos use Bash as the default shell. However, currently bash-it
does not work as expected on them.
This can be fixed as described, tested, and confirmed here.
Here's what I suggest:
- In
install.sh
, check for `$0S
Node version (or tell us if you're using electron or some other framework):
12.1.0
ShellJS version (the most recent version/Github branch you see the bug on):
0.8.3
Operating system:
Windows
Description of the bug:
sed is applied only once by line:
original archive:
import [COMPONENTNAME]Base from './[COMPONENTNAME]Base'
;
`const [COMPONENTNAME] = styled( [COMPONENTNAME]
-
Updated
May 19, 2020 - Dockerfile
Thanks a ton for any helpful feedback
I need help with getting best quality GIFs.
I am not used to CSS syntax so it would be amazing if you add a lot of example config.yml files. Also, try adding config.yml files for the GIFs you are displaying in your README.md. They look fantastic. I have spent hours trying to get perfect GIF but no luck.
I don't know what value to give for shadow
A history expansion followed by a character ineligible for history expansion (e.g. =
) isn't highlighted correctly. !!=
unquoted is all highlighted as history expansion and "!!="
terminates the history expansion style on the first !
rather than the second.
-
Updated
May 1, 2020 - Shell
See this thread
https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg/kaldi-help/1AMGQ54tn0E/kacpkoizAAAJ
for the problem-- for CUDA 10.1 the rpath we add for CUDA is not sufficient because they put the CUBLAS library somewhere else. Making the issue so we don't lose track of it.
Currently there is a single example config file which serves as a great starting point, but it would be nice to have a few pre-built configs for people to drop in and go.
Some examples:
- One designed entirely around Docker and monitoring container metrics.
- Another designed to look pretty and having an overview of system metrics.
Correct the terminology used in code and documentation so that it is consistent with HTTPie and web standards. Examples:
- body parameter -> data field
- operator -> separator
Steps to reproduce
Run asdf
. In help output a line is printed for the asdf env
command:
asdf env <command> [executable] Prints or runs an executable under a command environment
I would assume <command>
is an arbitrary command. But from what I can tell needs to be a plugin name or a shim name? I'm also not sure how this differs from executing the shim directly.
FY
Describe the bug
When
vi-mode
is enabled,shift+tab
does not cycle backwards through the autocomplete suggestions.If
vi-mode
is removed from the plugins, `shift+ta