3
votes
4answers
46 views
Lookup shell variables by name, indirectly
Let's say I have a variable's name stored in another variable:
myvar=123
varname=myvar
now, I'd like to get 123 by just using $varname variable.
Is there a direct way for that? …
0
votes
1answer
45 views
Variable Corruption in bash script
Given the following code I am expecting the variable $NewFile to be /var/ftp/pub/faxes/myfile.txt.pdf
However my system is returning: ".pdf/ftp/pub/faxes/myfile.txt"
$Ext returns …
0
votes
9answers
112 views
python or bash - adding “ at beginning of line and “, at end of line
I have text file with something like
first line
line nr 2
line three
etc
And i want to generate
"first line",
"line nr 2",
"line three",
I wonder how to do this in python or …
2
votes
8answers
65 views
How can I read a list of filenames from a file in bash?
I'm trying to write a bash script that will process a list of files whose names are stored one per line in an input file, something the likes of
find . -type f -mtime +15 > /tm …
1
vote
7answers
74 views
Reading java .properties file from bash
I am thinking of using sed for reading .properties file, but was wondering if there is a smarter way to do that from bash script?
2
votes
4answers
52 views
Bash: what expands to all files in current directory recursively
I know **/*.ext expands to all files in all subdirectories matching *.ext, but what is a similar expansion that includes all such files in the current directory as well?
0
votes
3answers
29 views
Set screen-title from shellscript
Hi,
is it possible to set the Screen-Title with an shellscript?
i thought about something like sending the key commands "Strg+A Shift-A Name "
I searched for about an hour only …
2
votes
4answers
59 views
Bash command to recursively list files but sorting by classification
I often use the excellent find program in Bash to list files with certain filters. For example, in a Subversion (SVN) working copy, I sometimes wish to recursively list all files b …
1
vote
3answers
61 views
Multi-threaded BASH programming - generalized method?
Ok, I was running POV-Ray on all the demos, but POV's still single-threaded and wouldn't utilize more than one core. So, I started thinking about a solution in BASH.
I wrote a ge …
3
votes
2answers
36 views
home directory expansion (~) within an argument
When I enter the following (BASH):
rdesktop -r disk:bacon=~/bacon host
It does not expand to
rdesktop -r disk:bacon=/home/me/bacon host
It seems the "disk:" part is the probl …
0
votes
2answers
15 views
cron + evolution data server + msync returning libebook-WARNING
Ok, i got a working synchronisation between mobile and evolution using opensync and the lib-evo2 module.
issueing
msynctool --sync w880i --filter-objtype note --filter-objtype e …
0
votes
3answers
67 views
How to process file names with variables from a list in a file in Bash
I have a file "FileList.txt" with this text:
/home/myusername/file1.txt
~/file2.txt
${HOME}/file3.txt
All 3 files exist in my home directory. I want to process each file in the …
1
vote
5answers
66 views
Using file contents as command line arguements in BASH
I'd like to know how to use the contents of a file as command line arguments, but am struggling with syntax.
Say I've got the following:
# cat > arglist
src/file1 dst/file1
sr …
1
vote
6answers
78 views
How to sort by line length, then reverse alphabetically
I have a large (600 odd) set of search and replace terms that I need to run as a sed script over some files. The problem is that the search terms are NOT orthogonal... but I think …
0
votes
3answers
33 views
BASH :: find file in archive from command line
i know how to find file with find
# find /root/directory/to/search -name 'filename.*'
but, how to look also into archives, as file can be ziped inside...
thanx
