Search Results

Search: Posts Made By: JerryHone
2,210
Posted By JerryHone
Try creating two files with the required time...
Try creating two files with the required time stamps using the touch command and then retry the find using -newer
e.g.
touch -t 201001010001 t20100101
touch -t 201001060001 t20100106
find -type f...
2,301
Posted By JerryHone
You could try symbolically linking the .c file to...
You could try symbolically linking the .c file to the .syn file rather than copying it, so as soon as the .syn is updated, the .c tracks it, or you could write the rules in your Makefile to deal with...
1,294
Posted By JerryHone
The $$ in the gcc line, I believe, will be...
The $$ in the gcc line, I believe, will be different from the one in the sed line, so your sed will be operating on a different file from the one generated by the gcc. Try storing $$ into another...
13,279
Posted By JerryHone
Perl has a built in 'stat' command. Is this...
Perl has a built in 'stat' command. Is this available to you?
1,057
Posted By JerryHone
Maybe I've missed the point here, but if you want...
Maybe I've missed the point here, but if you want to import your crontab into Excel, why not just do it with the raw file using white space as the delimiter?
Each crontab line has 6 entries -...
32,002
Posted By JerryHone
Similar to edgarvm's but coping with new files as...
Similar to edgarvm's but coping with new files as well as different ones...

new=/dist
old=/dist_old
diff=/dist_upgrade

cd $new
for f in *f
do
# Diff the files - ignore the output...
...
Showing results 1 to 6 of 6

 
All times are GMT -4. The time now is 02:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy