Summary: Working on a ksh script. Trying to run through a set of files, and return a set of files, which are unique subsets by column. Code ... __files=`ls $_...
Summary: Hi, I am trying to gather some mount point permissions from a remote system. I am having trouble with the for loop as it seems to exit the ssh and run...
Summary: Hi. I am learning one dimensional arrays in C++ out of a couple books. I noticed that a common way to initialize these arrays was using a "for" loop. ...
Summary: I have this for loop...It reads a bunch of configuration files and for each file it should call the function function_process. After function_process ...
Summary: I have this little script which has a settings file so the batch doesn't have to be edited. echo Drag and drop settings file onto this window then hit...
Summary: It was never my intention to ask someone to do my homework....I was asking for help. I should have been more specific by saying I was stuck at the for...
Summary: Dear friends, This is a continuation of my previous first post. Please click here I have another problem which i can't understand. The following batc...
Summary: I'm trying to retrieve a pattern from an output which I get to console: so I use a for loop to take in input this output from the console. The issue i...
Summary: Okay, I didn't see any difference at a glance in the code however that works. There is a different error that I am not sure if we can do anything abo...
Summary: This calls a sub for each line in the CSV file. The sub then uses a goto-loop to echo one value from the comma-separated list in each iteration. (The ...
Summary: Here is the code: for /f %%Q in (machines.txt) do ( ping -n 1 -w 3 %PingThis% IF %ERRORLEVEL% == 0 echo %%Q >> alive.txt ELSE echo %%Q Failed Ping >> ...
Summary: Hi, I need to run a particular se of commands repetatively for some number of times provided by userin for loop. I am doing it this way user input the...
Summary: k im new and i just want to make a program that uses for loops to somehow interate and print out every unicode symbol from 0001 to 9999. basically all...
Summary: The following program (below my question) produces the results I want, but I am trying to create a for loop to replace all of the cout statements. Wha...
Summary: I've been trying to get a for loop to display a pattern of decreasing, left-indented characters for about 3 days now. The assignment is to write a men...