swanand hegde

Greenhorn
+ Follow
since May 19, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by swanand hegde

I have a script to move files of type .txt to a particular folder .It looks for the files in work folder and move it to completed folder.
Example: It takes the .txt file from /tmp/swan/test/work to /tmp/swan/test/completed, but would like the script to also move the files from a subfolder to the completed folder. Example : Files from /tmp/swan/test/work/APX should move to /tmp/swan/test/completed

Below is the current script.

#!/bin/bash

MY_DIR=/tmp/swan

cd $MY_DIR

find . -path "*work*" -iname "*.txt" -type f -execdir mv '{}' ../completed\;
8 years ago
Hi All,

I have nearly two years of experience in Spring Batch and Spring integration framework. . I do not have much experience related to web applications .I am looking for a job change(I am currently in Bangalore) ,but most recruiters ask for Spring MVC or Struts. Do I have a good chance of getting a job with the experience I have in above mentioned technologies or I should learn some other framework.
10 years ago
Hi...I am new to j2ee/web applications,I want to know the prerequisites to create and execute a j2ee application.
I dont have any browser other than ie and ff.Right border is solid 1px,but for few rows it is showing blank.
Table right side border is not displaying properly.This happens only in firefox and not IE.Please help me.
I want to know the scenarios or situations where we get messagecontext does not have associated soap fault
12 years ago
I have a .dat file which has some 100 odd lines,i want to extract some 50 odd lines and put them in some memory (not a file) and the rest of the content in some other memory,like a buffer (again not in a file).The final output should have both the contents but some text must be inserted between them.There's also a field in .dat file which needs to be extracted and printed.


File.dat-->

some text(m1)
--> the 17 digit register no has to be extracted and printed ---
<tr style="FONT-FAMILY: Verdana; border: 1px #ffab00 solid; padding-right: 4px; empty-cells: show; "><td> Register no:12345678901234567</td></tr>




again some text(m2)





final output---> m1 (insert some text here) m2

Please reply fast,i need it urgently.

12 years ago