Search Results

Search: Posts Made By: porter
328,758
Posted By porter
move to the directory you want the symbolic link,...
move to the directory you want the symbolic link, then:

ln -s path-to-actual-folder name-of-link

to confirm, do:

ls -ld name-of-link
57,689
Posted By porter
To find zero length files use find . -type f...
To find zero length files use

find . -type f -size 0

so test with

find . -type f -size 0 | xargs ls -ld

if happy remove with

find . -type f -size 0 | xargs rm
28,485
Posted By porter
You should just be able to do ftp...
You should just be able to do

ftp server-name

where server-name is exactly the same string as in $HOME/.netrc

Yes the attributes of $HOME/.netrc look right.

When it fails, is it printing...
6,197
Posted By porter
while read i do ldapsearch -h host -p 389...
while read i
do
ldapsearch -h host -p 389 -b "$i"
done <ldap.list
Forum: Solaris 12-20-2007
14,435
Posted By porter
while read N do cp "$N" target-dir ...
while read N
do
cp "$N" target-dir
done <file.lst
Showing results 1 to 5 of 5

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