python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Disable Flags From Being Used in Bash Script Input?
I am currently making a Bash Script to take the users' input and pass it through Grep.
I don't have much, but the requirements for this script do not require for much either. One requirement for the s...
Bill Joe
Votes: 0
Answers: 1
Writing a bash script to merge multiple .csv files into one and keeping the same header
I am trying to write a script to merge multiple .csv files(could be an empty file as well) into one .csv file.
One way I found was using cat.
cat *.csv > outputFile.csv
This is working just fine. ...
tsunade
Votes: 0
Answers: 1
how to increment all digits in string(Bash Script)
My code
#!/bin/bash
echo -n "Zadaj vetu: "
read str
echo $str | awk '{ for (i=NF; i>1; i--) printf("%s ",$i); print $1; }' | tr ' ' '\n' | tr -d '#' | tr -d '=' | tr -d '-'
I ...
Wuju Style
Votes: 0
Answers: 2