Tagged Questions
9
votes
6answers
962 views
How to get the nth positional argument in bash?
How to get the nth positional argument in bash?
Thanks.
Edit: I forgot to say but I meant that n is a variable.
4
votes
2answers
613 views
Change a command line argument - bash
Is there a way to change the command line arguments in a bash script. Say for example, a bash script is invoked the following way:
./foo arg1 arg2
Is there a way to change the value of arg1 ...
4
votes
4answers
545 views
Arguments passed into for loop in bash script
I am trying to pass the argument as max limit for the for loop like this:
#!/bin/bash
for i in {1..$1}
do
echo $i
done
This however returns {1..2} when called with argument 2, instead of ...
3
votes
2answers
104 views
How do I separate the first argument from that of getopts?
#!/bin/bash
priority=false
it=0
dir=/
while getopts "p:i" option
do
case $option in
i) it=$OPTARG;;
p) priority=true;;
esac
done
if [[ ${@:$OPTIND} != "" ]]
then
...
3
votes
2answers
152 views
Limits of length for the output of * in bash?
In Bash
echo *
is almost equivalent to ls.
You can do things like
echo */*-out/*.html > all-my-html-files-on-one-line
Since * is a command line argument then there should be a limit on the ...
3
votes
1answer
138 views
Bash: How to escape $@?
I need to write a bash script that, among other things, should pass all its arguments intact to another program.
Minimal example:
$ cat >proxy.sh
#!/bin/bash
./script.sh $@
^D
$ chmod +x ...
3
votes
1answer
266 views
bash tools for parsing arguments
I have a bash script that uses a few variables (call them $foo and $bar). Right now the script defines them at the top with hard coded values like this:
foo=fooDefault
bar=barDefault
....
# use ...
2
votes
4answers
72 views
Why does this command fail when I use a # in command line args?
I have the following command:
ruby SaveAllDatabases.rb 192.168.0.15 1024 -r #0-D --non-interactive
It's a fairly basic command in which I run a ruby script with some command line arguments. The -r ...
2
votes
1answer
95 views
passing php variable to bash script that uses shflags
I am trying to make a PHP program triggered by a web submit tell a bash script to run with a single command line parameter. I am using the shflags command line parser for bash.
The pertinent part of ...
2
votes
1answer
138 views
What the difference between “$@” and “$*” in bash?
It seems to me that they both store all the command-line argument.
So is there a difference between this two ?
Thanks
2
votes
2answers
508 views
Why does sh/bash set command line parameter values when trying to set environment variable?
A question on basics : While tuning environment variables for a program launched from a script, I ended up with somewhat strange behaviour with sh (which seems to be actually linked to bash) : ...
2
votes
4answers
492 views
bash script running string as command
i have a bash script that builds a string to run as a command
the script:
#! /bin/bash
matchdir="/home/joao/robocup/runner_workdir/matches/testmatch/"
teamAComm="`pwd`/a.sh"
teamBComm="`pwd`/b.sh"
...
2
votes
2answers
298 views
Should command line options in POSIX-style operating systems be underscore style?
Should the name of command line options for a program in a POSIX-style operating system be underscore-style, like
--cure_world_hunger
or maybe some other style?
--cureworldhunger
...
1
vote
1answer
68 views
bash script not working with multiple arguments
I'm trying to make an alias to git commit
function gcam() {
git commit -a -m $@ ;
git status
}
when I invoke the command with gcam 'something' it works correctly, but if the message has a space ...
1
vote
2answers
58 views
Bash: Copy all arguments that are files to a directory
I have an executable called a.sh. It takes in an unknown number of arguments. From the list of arguments, I want to copy all the ones that are files into another folder, (/myfolder).
For example, if ...
1
vote
4answers
284 views
Shell script password security of command-line parameters
If I use a password as a command-line parameter it's public on the system using ps.
But if I'm in a bash shell script and I do something like:
...
{ somecommand -p mypassword }
...
is this still ...
1
vote
3answers
148 views
How do I get a list of directories in bash and then expand them as command line parameters?
I'm writing a bash script which needs to, for one step, get a list of directories (variable) in a target directory (which may also contain files), and then expand them out as parameters to a python ...
1
vote
2answers
96 views
12345678 = 123 45 67 8 in bash
I have a script that takes in one big 17 digit number as input from the command line. I want to separate it into 5 different numbers, each with different no. of digits. Like so:
Input: ...
1
vote
3answers
333 views
Differentiate between 2 and 02 in bash script
I have a bash script that takes the date, month and year as separate arguments. Using that, a url is constructed which then uses wget to fetch content and store it in an html file (say t.html). Now, ...
1
vote
4answers
256 views
Bash script for iterating through defined set of file names and performing commands
I have a set of folders named for example 10, 12, 13, 14, 18, 24 etc. They don't change numbers in any standard increment. I then need to move repetitively into the folders and then into the next one ...
1
vote
2answers
1k views
Maximum number of Bash arguments != max num cp arguments?
I have recently been copying and moving a large number of files (~400,000). I know that there are limitations on the number of arguments that can be expanded on the Bash command line, so I have been ...
1
vote
5answers
1k views
xargs with multiple arguments
I have a source input, input.txt
a.txt
b.txt
c.txt
I want to feed these input into a program as the following:
my-program --file=a.txt --file=b.txt --file=c.txt
So I try to use xargs, but with ...
1
vote
2answers
245 views
symbols in command line argument.. python, bash
I am writing a python script on Linux for twitter post using API, Is it possible to pass symbols like "(" ")" etc in clear text without apostrophes....
% ./twitterupdate this is me #works fine
% ...
0
votes
2answers
36 views
How to remove an item in Bash array?
I would like to pass all script arguments to the foo function, and if the first argument is something, pass all the rest arguments to the bar function.
I implemented this like that:
foo() {
if [ ...
0
votes
5answers
67 views
what is the best way to rename a set of files using a regex?
I have a directory full of files name: "file1.mp4.mp4 file1.mp4.mp4 file1.mp4.mp4 ...".
I would like to rename all of them using find from "file1.mp4.mp4" to "file1.mp4" and some other bash tools it ...
0
votes
4answers
47 views
How to give arguments to kill via pipe
I need to search for a certain process and kill that process. I wrote a command like this:
`ps -e | grep dmn | awk '{print $1}' |kill
where the process name is dmn. But its not working. How could I ...
0
votes
2answers
52 views
Sorting integers in Bash Shell Script with command line arguments as arguments to the sort fn?
My problem is how can I iterate through the command line arguments if the number of allowed arguments is a variable:
example:
./sort.sh n <n integers to sort>
./sort.sh 5 3 4 2 1 5
I tried ...
0
votes
1answer
45 views
Pattern for writing a wrapper script which calls several other scripts?
I have several (bash) scripts that are run both individually and in sequence. Let's call them one, two, and three. They take awhile to run, so since we frequently run them in order, I'm writing a ...
0
votes
3answers
418 views
Bash test if an argument exists
I want to test if an augment (e.g. -h) was passed into my bash script or not.
In a Ruby script that would be:
#!/usr/bin/env ruby
puts "Has -h" if ARGV.include? "-h"
How to best do that in Bash?
0
votes
2answers
426 views
How can I access command line arguments indexed from the end?
How can I get second argument from the end of arguments line in bash?
0
votes
2answers
73 views
bash script is taking fixed argument values instead of those actually passed
I have simple bash script find.sh for finding the files
==>cat find.sh
echo $1
find -name $1
but it is not taking the correct arguments sometimes, instead it takes the fixed argument
Eg
...
0
votes
3answers
280 views
Bash: piped argument to open command fails. Open commands excutes too early?
I'm pretty much a novice to shell scripting. I'm trying to send the output of some piped commands to an open command in bash in OSX.
My ultimate goal is to compile a Flex/Actionscript application ...