Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nrigaudiere/unixcommands
Unix Commands
https://github.com/nrigaudiere/unixcommands
Last synced: about 1 month ago
JSON representation
Unix Commands
- Host: GitHub
- URL: https://github.com/nrigaudiere/unixcommands
- Owner: nrigaudiere
- Created: 2016-10-19T15:02:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-12T15:27:12.000Z (over 7 years ago)
- Last Synced: 2023-08-05T20:51:24.850Z (over 1 year ago)
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# unixcommands
Unix CommandsRemove all .DS_Store files
```bash
sudo find / -name ".DS_Store" -depth -exec rm {} \;
```Disable .DS_Store files
```bash
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
```Open all jpg files in the current subfolders
```bash
find . -name "*.jpg" | xargs open
```Flush OSx DNS
```bash
sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder; say DNS cache flushed
```Download IE VMs
```bash
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
```bash
npm ls --depth=0 "$@" 2>/dev/null
```