Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

UNIX - General | Forum profile

Forum profile page for UNIX - General on http://www.macosxhints.com. This report page is the aggregated overview from a single forum: UNIX - General, located on the Message Board at http://www.macosxhints.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "UNIX - General" on the Message Board at http://www.macosxhints.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: The macosxhints Forums - For discussing everything OS X... - UNIX - General (site profile, domain info macosxhints.com)
Title: UNIX - General
Url: http://forums.macosxhints.com/forumdisplay.php?...
Users activity: 24 posts per thread
Forum activity: 30 active threads during last week
 

Posting activity on UNIX - General:

  Week Month 3 Months
Threads: 30 65 170
Post: 74 141 411
 

UNIX - General Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
tlarkin
13
user's latest post:
pulling out all **** data from...
Published (2009-12-17 13:57:00)
Oh MS does do that I found out. When I viewed the file form the finder it displayed the full http path of where the teacher grabbed that file.
Hal Itosis
10
user's latest post:
need help finding/moving files...
Published (2009-12-17 12:57:00)
It will look something like this... find /path/to/source/folder -iname \*.wma -exec mv {} /path/to/target/folder \; ...but i don't claim that's 100% right. I would put an "echo" in there, and study the results on screen first: find /path/to/source/folder -iname \*.wma -exec echo mv {} /path/to/target/folder \; [you will need to provide the paths]
acme.mail.order
4
user's latest post:
Need something to delete...
Published (2009-12-13 05:11:00)
I think he means defaults, like 'untitled.txt'. So something like find /Users -iname 'untitled*' -delete would seek and destroy any file beginning with 'untitled'. Rather dangerous command, test carefully.
mailman1175
4
user's latest post:
need help finding/moving files...
Published (2009-12-17 16:51:00)
Quote: Originally Posted by hayne You just did so. Threads don't go away - they are useful for future googlers. I wouldn't have expected them to go away. Some forum moderators find it useful to mark a thread's title so that people looking to help don't waste time clicking through and reading a thread, only to find the question's been answered. They also can get kinda snippy if you don't so mark a solved question....
delainebrown
3
user's latest post:
Can a Bash script determine...
Published (2009-12-09 18:57:00)
Here is a function I regularly use to change the directory to wherever the script resides. Code: WorkDir () { # Change to Script Directory WorkDir=`dirname "$0"` cd "$WorkDir" }
NovaScotian
3
user's latest post:
Need something to delete...
Published (2009-12-13 09:57:00)
Agree dangerous, particularly when fooling around with other folk's stuff. I was thinking though of new files created in other apps which may not be named "untitled".
paragonconcept
3
user's latest post:
Mirror an ubuntu machine
Published (2009-12-12 14:21:00)
We have an ubuntu web server at work, and i'd like to setup our builds to work locally on my 10.6 machine so i dont have to sync 2 boxes. I've installed macports, but before i start blowing stuff up, i was wondering if there's a way to sandbox the changes so if i need to remove them it will be easy?
sovdia
3
user's latest post:
Reduce file sizes of jpgs with...
Published (2009-12-17 12:00:00)
That was not successful but it direct me to '-strip' which solved the problem: mogrify -strip -quality 25% -type optimize -format jpg ...image.psd
fracai
3
user's latest post:
need help finding/moving files...
Published (2009-12-17 12:48:00)
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/directory2/file3 /destination/path/to/all/files or:...
ghostdog74
3
user's latest post:
need help finding/moving files...
Published (2009-12-17 19:32:00)
if your find command supports +;, then use this Code: find /path/to/source/folder -iname \*.wma -exec mv {} /path/to/target/folder +; otherwise, you can use xargs Code: find /path/to/source/folder -iname \*.wma -print0 | xargs -0 -i mv "{}" /destination
 

Latest active threads on UNIX - General::

The macosxhints Forums - For discussing everything OS X...
Started 1 day, 4 hours ago (2009-12-18 10:10:00)  by tlarkin
You can use the defaults read command and defaults write to read and write info to Plists. You can also use PlistBuddy.
Thread:  Show this thread (2 posts)   Thread info: pull info from a plist Size: 120 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: pull info from a plist :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
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/...
Thread:  Show this thread (8 posts)   Thread info: need help finding/moving files of a given type Size: 826 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: need help finding/moving files of a given type :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
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...
Thread:  Show this thread (7 posts)   Thread info: pulling out all **** data from an office document Size: 597 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: pulling out all **** data from an office document :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
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?
Thread:  Show this thread (5 posts)   Thread info: Reduce file sizes of jpgs with mogrify Size: 76 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Reduce file sizes of jpgs with mogrify :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
Started 11 months, 3 weeks ago (2008-12-30 14:19:00)  by hayne
Quote: Originally Posted by mur...
Thread:  Show this thread (15 posts)   Thread info: Permission Denied on certain commands. Size: 4,262 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Permission Denied on certain commands. :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
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?
Thread:  Show this thread (3 posts)   Thread info: Security(1) Keychain-Dump Size: 159 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Security(1) Keychain-Dump :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
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 ...
Thread:  Show this thread (19 posts)   Thread info: limiting awk to one result Size: 503 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: limiting awk to one result :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
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
Thread:  Show this thread (3 posts)   Thread info: awk renaming files using alphnumeric pattern Size: 504 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: awk renaming files using alphnumeric pattern :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
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?
Thread:  Show this thread (8 posts)   Thread info: Need something to delete untitled files Size: 66 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Need something to delete untitled files :: UNIX - General :: The macosxhints Forums - For discussing everything..."
The macosxhints Forums - For discussing everything OS X...
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.
Thread:  Show this thread (2 posts)   Thread info: Mirror an ubuntu machine Size: 335 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Mirror an ubuntu machine :: UNIX - General :: The macosxhints Forums - For discussing everything..."
 

Hot threads for last week on UNIX - General::

UNIX - General
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 ...
Thread:  Show this thread (19 posts)   Thread info: limiting awk to one result Size: 503 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: limiting awk to one result :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
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?
Thread:  Show this thread (8 posts)   Thread info: Need something to delete untitled files Size: 66 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Need something to delete untitled files :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
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/...
Thread:  Show this thread (8 posts)   Thread info: need help finding/moving files of a given type Size: 826 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: need help finding/moving files of a given type :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
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...
Thread:  Show this thread (7 posts)   Thread info: pulling out all **** data from an office document Size: 597 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: pulling out all **** data from an office document :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
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?
Thread:  Show this thread (5 posts)   Thread info: Reduce file sizes of jpgs with mogrify Size: 76 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Reduce file sizes of jpgs with mogrify :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
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?
Thread:  Show this thread (3 posts)   Thread info: Security(1) Keychain-Dump Size: 159 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Security(1) Keychain-Dump :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
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
Thread:  Show this thread (3 posts)   Thread info: awk renaming files using alphnumeric pattern Size: 504 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: awk renaming files using alphnumeric pattern :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
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.
Thread:  Show this thread (2 posts)   Thread info: Mirror an ubuntu machine Size: 335 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Mirror an ubuntu machine :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
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:...
Thread:  Show this thread (2 posts)   Thread info: cronjob and php, problem Size: 6,158 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: cronjob and php, problem :: UNIX - General :: The macosxhints Forums - For discussing everything..."
UNIX - General
Started 11 months, 3 weeks ago (2008-12-30 14:19:00)  by hayne
Quote: Originally Posted by mur...
Thread:  Show this thread (15 posts)   Thread info: Permission Denied on certain commands. Size: 4,262 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Permission Denied on certain commands. :: UNIX - General :: The macosxhints Forums - For discussing everything..."