在unix上,我有一些文件已经被_inode编号重命名为原始名称(即文件狗将被重命名为dog_inodeno)。我现在正在尝试删除inode,因此我可以在其他地方搜索原始文件名。有谁知道我怎么做这个和编码必要的。
由于
答案 0 :(得分:0)
这应该做的工作:
find . -type f -name "*_[0-9]*" -exec \
sh -c 'for i do
b=$(basename "$i")
r=$(basename "$i" "_$(ls -i "$i"|awk "{print \$1}")")
if [ "$b" != "$r" ]; then
echo mv "$i" "$(dirname $i)/$r"
fi
done' sh {} +
将echo mv
替换为mv
,以便脚本实际重命名文件。
答案 1 :(得分:0)
只有当文件的inode编号是上述格式的文件名的一部分时,此处的解决方案才会重命名您的文件,这是OP想要的。
解决方案在我的最后成功进行了测试。
find ./ -name "*_[0-9][0-9][0-9][0-9][0-9][0-9]" -exec sh 'rename-files.sh' {} \;
存储以下脚本以使find命令成功。
#Script Name: rename-files.sh
#!/bin/bash
#Store the result of find
find_result=$1
#Get the existing file name
fname_alone=`expr ${find_result} : '.*/\(.*\)' '|' ${find_result}`
fname_with_relative_path=`expr ${find_result} : '.\(.*\)' '|' ${find_result}`
fname_with_full_path=`echo "$(pwd)${fname_with_relative_path}"`
#Get the inode number of file name
file_inode_no=`find ./ -name ${fname_alone} -printf '%i'`
#Read the end of name
end_of_name=`echo $fname_alone | awk -F "_" '{print $NF}' `
#Check if end of name contains its file's inode number
if [ $end_of_name -eq $file_inode_no ]
then
#Remove the inode number at the end of file name
new_name=`expr $find_result : '.\(.*\)_.*' '|' $find_result`
#Append the path of the file
renamed_to=`echo "$(pwd)${new_name}"`
#Rename your dog_inodeno to dog
mv $fname_with_full_path $renamed_to
fi
希望这有帮助。