Talk:Console Command Examples: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

20 July 2024

  • curprev 12:5212:52, 20 July 2024 Littleguy talk contribs 439 bytes +439 Created page with "== testing case conversion == for f in *; do temp="${f}_temp"; mv -- "$f" "$temp"; done && for f in *_temp; do mv -- "$f" "${f%_temp}"; done for f in *; do mv -- "$f" "$(ec..."