Skip to content

Instantly share code, notes, and snippets.

View martinbpeters's full-sized avatar

Martin Peters martinbpeters

View GitHub Profile
@martinbpeters
martinbpeters / Percentage
Created November 26, 2010 10:17
Calculate a percentage using shell
#!/bin/sh
#
# Calculates a percentage
#
echo "scale=3; $1 / $2 * 100" | bc
@martinbpeters
martinbpeters / File renaming
Created November 26, 2010 09:18
Simple file renaming using a loop in shell
#!/bin/sh
#
# Create a list of all txt files
# Loop over all files
# Extract name (split on '_')
# Copy file to new extension (text)
#
files=`ls -l *.txt | awk '{print $9}'`