Skip to content

Instantly share code, notes, and snippets.

@wizardofzos
Created July 15, 2019 19:25
Show Gist options
  • Save wizardofzos/52fbb021b28808630a1203aa70e4ae1a to your computer and use it in GitHub Desktop.
Save wizardofzos/52fbb021b28808630a1203aa70e4ae1a to your computer and use it in GitHub Desktop.
Shell Script that breaks my ZPDT
#!/bin/bash
mkdir -p broken
c=1
while [ $c -le 4000 ]
do
f=$RANDOM
touch broken/$f
setfacl -m "u:IBMUSER:rwx" broken/$f
clear
echo "Testing cut" | cut -c1
echo "Done for $c"
let c=c+1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment