• R/O
  • SSH

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

File Info

Révision 996927272df0a00dbfe20e6b005ff6334ff7c12d
Taille 67 octets
l'heure 2019-11-21 06:05:44
Auteur Lorenzo Isella
Message 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