Most voted "shell" questions
This is a program that takes, interprets and executes user commands, appearing on the screen as a command line, represented by a command interpreter, which waits on the screen for user commands. " Shell" is also used to describe applications, including software that is "built around" a specific component, such as browsers and email clients that are themselves "shells" for HTML rendering engines.
Learn more…208 questions
Sort by count of
-
0
votes1
answer24
views -
-1
votes1
answer110
viewsBrowse multiple Linux terminal directories
I have an algorithm that starts with a file. From that file, it generates several others. I need to get all the names of these generated files, to from them, run my algorithm again. Basically I…
-
-1
votes1
answer22
viewsCompare 4 Variables and execute unique code for each result
Hello, I’m trying to create a comparison where the next action will be different for each variable value someone can help me. The intention is if the value is true, executes one function if it is…
-
-1
votes2
answers39
viewsShellscript for returning bank values each value in 1 different variable?
Hello I am trying to return 1 value for each variable I can return however, I am trying to create a condition that applies to one for which are true and which are false and display me on the screen…
-
-1
votes1
answer46
viewsSimilar command to python’s Try for shellscript?
I need to formulate a . sh to run a code if the first error: !#/bin/bash python main.py python3 main.py As if it were a python (Try/Except) exception. I thought about creating two . sh scripts, to…
-
-1
votes1
answer26
views -
-2
votes1
answer91
viewshow to remove unnecessary commas using sed in the shell script?
I’m trying to create a script to automate a job I do. Everything was going well until I found this problem. When I use the sed, to remove a word from the string, the output shows 2 commas together,…
-
-4
votes1
answer36
viewsShell script error while renaming a large set of folders
People were making a script to rename several folders in bulk that contains tabs+spaces+dots+dashes and many other characters in the name for something like: name_myname_folder. I made a script…