This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python2.7 | |
| # Required ffmpeg | |
| import os | |
| import sys | |
| walk_dir = os.getcwd() | |
| count = 0 | |
| for root, subdirs, files in os.walk(walk_dir): | |
| for file in files: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export PATH="~/bin:/usr/local/bin/":$PATH | |
| export EDITOR=/usr/bin/vim | |
| export BLOCKSIZE=1k | |
| export CLICOLOR=1 | |
| export LSCOLORS=ExFxBxDxCxegedabagacad | |
| alias ll='ls -FGlAhpk' # Preferred 'ls' implementation | |
| alias whatismyip='curl ip.appspot.com && ' # myip: Public facing IP Address | |
| alias flushdns='dscacheutil -flushcache' # flushDNS: Flush out the DNS Cache |