Skip to content

nrigaudiere/unixcommands

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

unixcommands

Unix Commands

Remove all .DS_Store files

sudo find / -name ".DS_Store" -depth -exec rm {} \;

Disable .DS_Store files

defaults write com.apple.desktopservices DSDontWriteNetworkStores true

Open all jpg files in the current subfolders

find . -name "*.jpg" | xargs open

Flush OSx DNS

sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder; say DNS cache flushed 

Download IE VMs

curl -s https://raw.githubusercontent.com/xdissent/ievms/master/ievms.sh | env IEVMS_VERSIONS="7 9 EDGE" bash

List npm packages version and avoid errors

npm ls --depth=0 "$@" 2>/dev/null

About

Unix Commands

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published