Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
83 views

IFS more than a character usage with R script and bash

I am using bash scripting to write and run R scripts: since I was not proficient in R I used to write loops and conditions in the bash script that then were translated in the R scripts or "here ...
2
votes
4answers
159 views

What abut this crazy sequence of loops and ifs? Ideas to improve this code?

This code is currently working, but it looks terrible - and probably can be much improved in terms of performance. Any Suggestions? def OnClick(): global Selection, touch, set_elsb, set_vreg, ...
1
vote
1answer
95 views

Bash does not remove leading whitespace

I seem to have a very strange problem. I am trying to retrieve JSON field values from a CURL command using jsawk, however jsawk requires its JSON pretty-printed (which can be easily achieved with a ...
1
vote
1answer
201 views

IFS variable issue in script

After some additional debugging, turns out the problem is with the awk statement rather than the separator Hi all, I'm using IFS variable in a shell script to parse some data (the data is already ...
0
votes
3answers
82 views

BASH multiple nested IFs inside DO

The script I am trying to write needs to do the following Go to specific directory and find all files with the *.mp4 extension that is newer than 30 minutes and move them into a variable. All files ...
0
votes
2answers
84 views

While, do, done flow control in bash

Can anyone explain the control flow of the following bash script? while IFS= read -r file do rm -rf "$file" done < todelete.txt From what I understand, this would happen: IFS would be assigned ...
0
votes
2answers
106 views

PHP nested Ifs are not working

I'm checking if Facebook users don't like a page. If so, the code displays the user's name and an invitation message to "Like it"; if not, it displays the "incentive landing page". However, I just get ...
0
votes
1answer
92 views

Excel nested IF's

I have found several sites that talk about work arounds but they all talk about doing some kind of mathematical equation, so this is the nested if's I am trying to fix. ...
0
votes
2answers
308 views

Problem in IFS stream file CCSID

I am trying to run a RPGLE program which use java methods. I am transfering the java code (xxxx.java file) from my system(Windows XP) to the AS/400 IFS directory through FTP. After transfering it to ...
0
votes
1answer
120 views

Advice on choosing the best data warehousing tools for ERP system on Oracle 10g

I have been tasked with researching and implementing data warehousing for our ERP system (it's IFS if anyone happen to have prior experience). There is 137GB of data over more than 5000 tables. Does ...
0
votes
1answer
46 views

String tokenisation algorithm won't tokenise

Morning all, I am writing a bash script to extract the values of certain XML tags from all files in a given directory. I have decided to do this by tokenising each line and returning th4e relavent ...
0
votes
5answers
353 views

BASH: How do you “split” the date command?

Cygwin user here (though if there's a suitable solution I will carry it over to K/Ubuntu, which I also use). I have a Welcome message in my .bashrc that looks like the following: SAD=(`date ...
0
votes
2answers
62 views

Is something wrong with this MySQL query?

I'm trying to update a site that was coded horribly, and I think there is an error in this multiple IF statement. I've been Googling for a while and can't find any example of multiple IFs in a MySQL ...
0
votes
4answers
119 views

validating correct answer with loops in python

Sorry for the non descriptive question I had no idea how to word it. I'm trying to write a program (GUI) where I ask the users questions and then in return they answer and see if they are correct ...
0
votes
2answers
419 views

Add or extend file system support under windows

I've seen that Mac Drive 7 adds HFS+ and HFS support to windows for both hard-drives and CDs, which includes handling problems like the mac partition format. Clearly that must mean that file system ...