Search Results

Search: Posts Made By: funyotros
Forum: Linux 04-13-2008
22,050
Posted By radoulov
What's wrong with: rm -r */
What's wrong with:

rm -r */
2,016
Posted By fpmurphy
Done. Also moved thread to Shell Programming &...
Done. Also moved thread to Shell Programming & Scripting Forum.
1,876
Posted By Corona688
A close look at the contents of /proc/self/fd...
A close look at the contents of /proc/self/fd could help.

$ ls -l /proc/self/fd/
total 0
lrwx------ 1 monttyle monttyle 64 Oct 16 20:59 0 -> /dev/pts/0
lrwx------ 1 monttyle monttyle 64 Oct 16...
1,876
Posted By Corona688
It's the shell which is told to do things on...
It's the shell which is told to do things on logout, not anything fundamental to the terminal. If you're not running shells in these terminals, what are they doing?
1,489
Posted By walid2mi
while IFS=_ read o c; do sudo chown "$o" "$c" ;...
while IFS=_ read o c; do sudo chown "$o" "$c" ; done < .owners
1,489
Posted By rdcwayx
#!/bin/ksh while read i do sudo chown...
#!/bin/ksh
while read i
do
sudo chown "${i%_*}" "${i#*_}"
done < .owners
Forum: IP Networking 01-12-2010
3,277
Posted By Corona688
Your windows machine probably won't respond to...
Your windows machine probably won't respond to pings.

Your debian machine might not respond to pings unless configured to do so.

Do your other machines show up in your arp cache after you try...
2,297
Posted By jim mcnamara
ls -l | awk '{ print $3, $NF}' use print...
ls -l | awk '{ print $3, $NF}'


use print $3 $NF if you want them concatenated - smashed together
Showing results 1 to 8 of 8

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