• R/O
  • SSH

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revision996927272df0a00dbfe20e6b005ff6334ff7c12d (tree)
Zeit2019-11-21 06:05:44
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

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

Ändern Zusammenfassung

Diff

diff -r 9f3230140a8d -r 996927272df0 Bash-scripts/append_prefix_filename.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Bash-scripts/append_prefix_filename.sh Wed Nov 20 22:05:44 2019 +0100
@@ -0,0 +1,7 @@
1+
2+#!/bin/bash
3+
4+
5+for file in *.dat; do
6+ mv "$file" "D_$file"
7+done