Rinominare molti file da terminale può diventare rapido e ordinato con un’interfaccia TUI pensata per il controllo totale. #Linux #Terminale #TUI #FileRename #OpenSource

https://www.linuxeasy.org/goren-rinominare-file-terminale-anteprima-live/?utm_source=mastodon&utm_medium=jetpack_social

GoRen rinominare file da terminale con anteprima live

GoRen è un tool TUI per rinominare file in batch da terminale, con anteprima live, regole flessibili e conferma finale.

Linux Easy

Learning the syntax and functions included with the #fishshell. Renaming all the "xxx.bw" files from a folder, to remove the words "Aligned.sortedByCoord.out.bam" that the #STAR mapper adds to the file names looks like this:

set THEFILES (find . -name "*.bw")
for f in $THEFILES
command mv $f (echo (string replace Aligned.sortedByCoord.out.bam "" $f))
end

One can also use #sed, but the string manipulation functions included with fish are quite extensive.

#linux #commandline #filerename