0
votes
1answer
24 views
Using DOS file contents as command line arguments in BASH…
This is a follow-up to this question's answer.
How can I modify the code so that the annoying CRLF of a DOS created file can be stripped away before being passed to xargs?
Exampl …
0
votes
4answers
60 views
bash script to watch a folder
I have the following situation:
There is a windows folder that has been mounted on a Linux machine. There could be multiple folders (setup before hand)
in this windows mount. I ha …
1
vote
6answers
51 views
How to iterate over positional parameters in a Bash script?
Where am I going wrong?
I have some files as follows:
filename_tau.txt
filename_xhpl.txt
fiename_fft.txt
filename_PMB_MPI.txt
filename_mpi_tile_io.txt
I pass tau, xhpl, fft, mp …
1
vote
5answers
78 views
ls command: how can I get a recursive full-path listing, one line per file?
How can I get ls to spit out a flat list of recursive one-per-line paths?
For example, I just want a flat listing of files with their full paths:
/home/dreftymac/.
/home/dreftyma …
1
vote
4answers
49 views
bash script for searching from a list of files in directory
There are around 20 files in a directory . Each file has the string $str inside it.
I want to write a script that picks out that row containing the string $str and dump into a fil …
3
votes
3answers
108 views
How can I obtain unmodified command line arguments to “wrap” another command line tool?
I want to write a script foo which simply calls bar with the exact same arguments it was called with, using Bash or Perl.
Now, a simply way to do this in perl would be
#!/bin/per …
3
votes
3answers
36 views
/bin/sh invoked from make doesn’t find command with unquoted dash-argument
I have a makefile to build some transducers using Xerox' finite state tools (xfst in this case), which I invoke in my makefile like so (except with a hard tab instead of spaces in …
1
vote
2answers
34 views
How do I simplify bash’s ‘eval “$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE”’ and keep it working?
I'm updating a bash script which serves as a program testing tool.
Previously, I had this line in a script working perfectly ($BIN_FILE is set to a relative path to the binary bein …
0
votes
4answers
46 views
text manipulation and removal
I have text files generated by one of my tools with structure shown below.
1 line text
(space)
multiple
lines
text
(space)
multiple
lines
text
nr 2
------------------------------- …
0
votes
3answers
30 views
linux script simple arithmetic code
So I'm just working on some simple arithmetic code. Here's what I got:
echo "The number should be 2";
declare -i input added
input= date +%w
let added="input/2"
echo "$added"
…
1
vote
1answer
18 views
Recommendation - Zsh vs FishShell. Scripting, productivity and poweruser perse.
I have spent sometime trying to pick one, on net comparisons are for zsh vs bash and fish vs bash. But, I Could not find any comparison for zsh vs fish. I program in c/c++, apart f …
0
votes
4answers
50 views
BASH: Assign ‘&’ to variable NOT as string
I wanted to conditionally run a command as a background or foreground process, so I wrote something like this:
test $some_var; bg_suffix=&
long_command $bg_suffix
it doesn't …
2
votes
4answers
56 views
Redirect output to a bash array
I have a file containing the string
ipAddress=10.78.90.137;10.78.90.149
I'd like to place these two IP addresses in a bash array. To achieve that I tried the following:
n=$(gre …
3
votes
1answer
36 views
Is it possible to capture bash output to the OS X finder clipboard?
Is it possible to capture bash output to the OS X finder clipboard?
2
votes
3answers
62 views
Extract the last directory of a pwd output
How do I extract the last directory of a pwd output? I don't want to use any knowledge of how many levels there are in the directory structure. If I wanted to use that, I could do …
