In migrating a standalone FTP system, I found that I needed to re-add several users, and wanted a scripted method of updating passwords. awk -F, ‘{ printf(“%s:%s\n”,$3,$4); }’ /tmp/ftpusers.csv | while read line; do echo $line | chpasswd; done where ‘ftpusers.csv’ format is 3rd and 4th column is username and desired password AIX: chpasswd Linux: [...]
ITM Logs Timestamp Conversion
ITM v6 log files use a hexadecimal timestamp (to save space? who the hell knows), which adds unnecessary effort when the reason you’re looking at the logs is to determine an issue in the first place. In any case… Here’s the script I wrote when I first encountered the nonsense in ITM v6 logs a [...]
