Skip to content

Instantly share code, notes, and snippets.

@himkt
Created October 2, 2017 14:36
Show Gist options
  • Save himkt/67db8d694794ee2c8ccaf7a191e7454c to your computer and use it in GitHub Desktop.
Save himkt/67db8d694794ee2c8ccaf7a191e7454c to your computer and use it in GitHub Desktop.
#! /bin/zsh
acat () {
fsize=`du -k $1| awk '{print $1}'`
if [ $(($fsize)) -gt 100 ]; then
echo 'this file is too large'
else
cat $1
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment