• R/O
  • SSH

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

File Info

Rev. 996927272df0a00dbfe20e6b005ff6334ff7c12d
Tamanho 67 bytes
Hora 2019-11-21 06:05:44
Autor Lorenzo Isella
Mensagem de Log

A bash script to rename all the files in a folder by adding them a prefix.

Content


#!/bin/bash


for file in *.dat; do
    mv "$file" "D_$file"
done