SORUN: Bir dosyayı üst dizinin temel adıyla dosyanın üst kısmında etiketleyin.
Yani, için
/mnt/Vancouver/Programming/file1
üst etiketlemek file1
ile Programming
.
ÇÖZÜM 1 - boş olmayan dosyalar:
bn=${PWD##*/} ## bn: basename
sed -i '1s/^/'"$bn"'\n/' <file>
1s
metni dosyanın 1. satırına yerleştirir.
ÇÖZÜM 2 - boş veya boş olmayan dosyalar:
Yukarıdaki sed
komut boş dosyalarda başarısız olur. İşte /superuser/246837/how-do-i-add-text-to-the-beginning-of-a-file-in-bash/246841#246841 tabanlı bir çözüm
printf "${PWD##*/}\n" | cat - <file> > temp && mv -f temp <file>
O Not -
cat komutu gereklidir (standart girdi okur: bkz man cat
fazla bilgi için). Burada, printf ifadesinin (STDIN'a) çıktısını alması ve bu ve dosyanın geçici olarak ayarlanması gerektiğine inanıyorum ... Ayrıca http://www.linfo.org/cat adresindeki açıklamaya bakın. .html .
Ben de eklendi -f
için mv
dosyaların yenilenmesinde teyitleri isteniyor önlemek için, komuta.
Bir dizin üzerinden bilgi almak için:
for file in *; do printf "${PWD##*/}\n" | cat - $file > temp && mv -f temp $file; done
Bunun boşluklu yolları da kıracağını unutmayın; bunlar için başka yerlerde çözümler vardır (örneğin dosya globlama veya find . -type f ...
-tip çözümler).
ADDENDUM: Re: son yorumum, bu komut dosyası, yollarda boşlukları olan dizinleri tekrarlamanızı sağlayacak:
#!/bin/bash
## /programming/4638874/how-to-loop-through-a-directory-recursively-to-delete-files-with-certain-extensi
## To allow spaces in filenames,
## at the top of the script include: IFS=$'\n'; set -f
## at the end of the script include: unset IFS; set +f
IFS=$'\n'; set -f
# ----------------------------------------------------------------------------
# SET PATHS:
IN="/mnt/Vancouver/Programming/data/claws-test/corpus test/"
# /superuser/716001/how-can-i-get-files-with-numeric-names-using-ls-command
# FILES=$(find $IN -type f -regex ".*/[0-9]*") ## recursive; numeric filenames only
FILES=$(find $IN -type f -regex ".*/[0-9 ]*") ## recursive; numeric filenames only (may include spaces)
# echo '$FILES:' ## single-quoted, (literally) prints: $FILES:
# echo "$FILES" ## double-quoted, prints path/, filename (one per line)
# ----------------------------------------------------------------------------
# MAIN LOOP:
for f in $FILES
do
# Tag top of file with basename of current dir:
printf "[top] Tag: ${PWD##*/}\n\n" | cat - $f > temp && mv -f temp $f
# Tag bottom of file with basename of current dir:
printf "\n[bottom] Tag: ${PWD##*/}\n" >> $f
done
unset IFS; set +f
sed
.