Started 1 week, 2 days ago (2009-12-09 17:49:00)
by Hal Itosis
Hmm -- looking at the whole thing -- the first one comes under "Battery Information" and the second under "AC Charger Information". There are probably a number of ways to approach this. Taking the title literally (limiting
awk), i would say [assuming it's that first one you want, then] this should work:
awk '/Charging/ { if (NR<11) print $2 }'
That forces awk to only regard items within ...
Started 1 week ago (2009-12-12 11:59:00)
by NovaScotian
How are files kept? Does every student have his/her own
user area?
Started 2 days, 1 hour ago (2009-12-17 12:48:00)
by fracai
It would help if you could post an example of the move you're hoping for.
Something like moving every matching file to the same destination is
easy.
Moving every file to destination dependent on the existing location is doable, but a bit harder.
An example like the following would be helpful:
/original/path/to/directory1/file1
/original/path/to/directory1/file2
/original/path/to/...
Started 2 days, 2 hours ago (2009-12-17 12:36:00)
by Hal Itosis
Test: **** m et a ****.
EDIT: You're right!!! [I had to wrap some letters in black color tags to get it posted.]
You could try vis or xxd or
more to see the raw data. Microsoft notoriously puts all sorts of stuff in there that the user doesn't know about (and Word won't show them).
Edit #2: depending on size, you may want to pipe vis or xxd to more.
E.g., xxd /path/to/the/doc...
Started 3 days, 2 hours ago (2009-12-16 12:17:00)
by benwiggy
I don't know about mogrify, but any chance that it's creating preview icons?
Started 5 days, 4 hours ago (2009-12-14 09:50:00)
by tlarkin
So you want this to be automated with no
user interaction, like via a script? I am not quite putting together what you are asking. A little more info please?
Started 5 days, 17 hours ago (2009-12-13 21:06:00)
by ghostdog74
with the shell
Code:
shopt -s nullglob
d="$(date +%b%d)_"
prefix="ISF_${d}"
for file in IMG*CR2
do
f="${file/#IMG_/}"
echo mv "$file" "${prefix}$f"
done
Started 6 days, 22 hours ago (2009-12-12 15:57:00)
by fracai
Can you clarify a bit as to what you're hoping to do? Are you trying to sync
MacPorts packages between two Macs? Ubuntu packages between two Ubuntu machines? Does "builds" refer to something else? And sandbox which changes?
You won't be able to use MacPorts packages on your Ubuntu machine, nor vice-versa.
Started 1 week, 1 day ago (2009-12-11 02:35:00)
by shafiq2626
Solved
Cronjob Problem
Thanks Navaho
I also faced same problem but now solved due to your method.
thanks
Quote:...
Started 11 months, 3 weeks ago (2008-12-30 14:19:00)
by hayne
Quote:
Originally Posted by
mur...