oshfdk > 23-10-2023, 11:21 AM
nablator > 23-10-2023, 12:20 PM
(23-10-2023, 11:21 AM)oshfdk Wrote: You are not allowed to view links. Register or Login to view.The first word looks like "otchody" on the scan.
ReneZ > 23-10-2023, 01:49 PM
ReneZ > 08-11-2023, 08:24 AM
ReneZ > 08-11-2023, 08:50 AM
bi3mw > 08-11-2023, 05:30 PM
before:
-------
for pp in "$@"
do
once_sh ${qq} ${pp} 2>/dev/null
done
after:
------
for pp in "$@"
do
once_sh ${qq} ${pp}
done
nablator > 08-11-2023, 08:18 PM
bi3mw > 08-11-2023, 08:19 PM
(08-11-2023, 08:24 AM)ReneZ Wrote: You are not allowed to view links. Register or Login to view.Perhaps I have a simple script somewhere (227 lines long) that renames all files, but I won't bet on it as I never needed it. It would probably take about 10 minutes of copying, pasting and modifying, which is unfortunately error-prone.
#!/bin/sh
grep '<! $Q=' RF1a-n.txt >> folio_list.txt
awk -F'>' '{print $1}' folio_list.txt >> folio_list2.txt
rm ./folio_list.txt
cat folio_list2.txt | sed -e 's/^.\{,1\}//' > folio_list3.txt
rm ./folio_list2.txt
mv folio_list3.txt folio_list.txt
cd /Your_path/RF
ls | paste - /Your_path/folio_list.txt | awk 'NF == 2 { print "mv ", $1, $2 } ' | bash
rm -f /Your_path/folio_list.txt
ReneZ > 09-11-2023, 01:26 AM
MarcoP > 28-12-2023, 08:31 AM