Como eu excluo um link físico?

18

Recentemente, criei um link com o seguinte:

sudo ln -n originalFileLocation

Como excluo um link físico?

    
por hawkeye 05.11.2011 / 11:17

4 respostas

32

Você pode excluí-lo com rm como de costume: rm NameOfFile . Observe que, com hard links, não há distinção entre "o arquivo original" e "o link para o arquivo": você só tem dois nomes para o mesmo arquivo, e a exclusão de apenas um dos nomes não excluirá o outro.

    
por Prateek 05.11.2011 / 11:24
2

Eu tenho este script para remover links rígidos redundantes. Mas tome cuidado - é muito perigoso.

#!/bin/bash
clear
echo Reduce redundant hardlinks in the current folder
echo ------------------------------------------------
echo 
echo "  $(basename $0) [-R]"
echo "      -R means recursive"
echo 
read -p "You can break by pressing Ctrl+C"
echo
ask=1
if [ a$1 == "a-R" ]; then  recursive=" -R "; fi

for i in $(ls -i $recursive | awk '{print $1}' | uniq --repeated | sort); 
do 
    echo "Inode with multiple hardlinked files: $i"
    first=1
    for foundfile in $(find . -xdev -inum $i);
    do 
        if [ $first == 1 ]; then
            echo "  preserving the first file:  $foundfile"
            first=0
        else
            echo "  deleting the redundant file:    $foundfile"  
            #rm $foundfile  
        fi
    done 
    if [ $ask == 1 ]; then 
        read -p "Delete all the rest of redundant hardlinks without asking? y/N "
        if [ a${REPLY,,} == "ay" ]; then  ask=0; fi
    fi  
#   read -p "pause for sure"
    echo
done
echo "All redundant hardlins are removed."
echo
    
por xerostomus 23.12.2014 / 18:21
0

Na verdade, rm não funciona:

[user@localhost Products]$ rm AZP/
rm: cannot remove 'AZP/': Is a directory
[user@localhost Products]$ rm -r AZP/
rm: cannot remove 'AZP': Not a directory

O que funciona é unlink AZP .

    
por Bunyk 12.03.2014 / 17:36
0

Se você deseja remover apenas o link e, assim, manter o arquivo original, é necessário usar o unlink.

    
por fbo72 29.11.2016 / 11:57

Tags