From c10ff8d932121d3711a830a3e32f66358b059d38 Mon Sep 17 00:00:00 2001 From: ahmetshen-us Date: Mon, 21 Dec 2015 00:54:02 -0500 Subject: [PATCH] adding Turkish translation of Readme --- README-tr.md | 1354 ++++++++++++++++++++++++++++++++++++++++++++ assets/logo-tr.png | Bin 0 -> 9862 bytes 2 files changed, 1354 insertions(+) create mode 100644 README-tr.md create mode 100644 assets/logo-tr.png diff --git a/README-tr.md b/README-tr.md new file mode 100644 index 0000000..57f38d0 --- /dev/null +++ b/README-tr.md @@ -0,0 +1,1354 @@ + + +> A curated list of shell commands and tools specific to OS X. +> +> _“You don’t have to know everything. You simply need to know where to find it when necessary.” (John Brunner)_ + +[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/herrbischoff/awesome-osx-command-line) + +If you want to contribute, you are highly encouraged to do so. Please read the [contribution guidelines](contributing.md). + +For more terminal shell goodness, please also see this list's sister list [Awesome Command Line Apps](https://github.com/herrbischoff/awesome-command-line-apps). + +## Table of Contents + +- [Appearance](#appearance) + - [Transparency](#transparency) + - [Wallpaper](#wallpaper) +- [Applications](#applications) + - [App Store](#app-store) + - [Apple Remote Desktop](#apple-remote-desktop) + - [iTunes](#itunes) + - [Mail](#mail) + - [Safari](#safari) + - [Sketch](#sketch) + - [TextEdit](#textedit) +- [Backup](#backup) + - [Time Machine](#time-machine) +- [Developer](#developer) + - [App Icons](#app-icons) + - [Vim](#vim) + - [Xcode](#xcode) +- [Disks and Volumes](#disks-and-volumes) + - [Disk Images](#disk-images) +- [Dock](#dock) +- [Documents](#documents) +- [Finder](#finder) + - [Files and Folders](#files-and-folders) + - [Layout](#layout) + - [Metadata Files](#metadata-files) + - [Opening Things](#opening-things) +- [Fonts](#fonts) +- [Functions](#functions) +- [Hardware](#hardware) + - [Hardware Information](#hardware-information) + - [Power Management](#power-management) +- [Input Devices](#input-devices) + - [Keyboard](#keyboard) +- [Media](#media) + - [Audio](#audio) + - [Video](#video) +- [Networking](#networking) + - [Bonjour](#bonjour) + - [DHCP](#dhcp) + - [DNS](#dns) + - [Hostname](#hostname) + - [Networking Tools](#networking-tools) + - [TCP/IP](#tcpip) + - [Wi-Fi](#wi-fi) +- [Package Managers](#package-managers) +- [Printing](#printing) +- [Security](#security) + - [Application Firewall](#application-firewall) + - [Gatekeeper](#gatekeeper) + - [Passwords](#passwords) + - [Physical Access](#physical-access) + - [Wiping Data](#wiping-data) +- [Search](#search) + - [Find](#find) + - [Locate](#locate) +- [System](#system) + - [AirDrop](#airdrop) + - [AppleScript](#applescript) + - [Basics](#basics) + - [Clipboard](#clipboard) + - [FileVault](#filevault) + - [Information/Reports](#informationreports) + - [Kernel Extensions](#kernel-extensions) + - [LaunchAgents](#launchagents) + - [LaunchServices](#launchservices) + - [Login Window](#login-window) + - [Memory Management](#memory-management) + - [Notification Center](#notification-center) + - [QuickLook](#quicklook) + - [Root User](#root-user) + - [Safe Mode Boot](#safe-mode-boot) + - [Screenshots](#screenshots) + - [Software Installation](#software-installation) + - [Software Update](#software-update) + - [Spotlight](#spotlight) + - [System Integrity Protection](#system-integrity-protection) +- [Terminal](#terminal) + - [Alternative Terminals](#alternative-terminals) + - [Shells](#shells) + - [Terminal Fonts](#terminal-fonts) + + +## Appearance + +### Transparency + +#### Transparency in Menu and Windows +```bash +# Reduce Transparency +defaults write com.apple.universalaccess reduceTransparency -bool true + +# Restore Default Transparency +defaults write com.apple.universalaccess reduceTransparency -bool false +``` + + +### Wallpaper + +#### Set Wallpaper +```bash +# Up to Mountain Lion +osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/path/to/picture.jpg"' + +# Since Mavericks +sqlite3 ~/Library/Application\ Support/Dock/desktoppicture.db "update data set value = '/path/to/picture.jpg'" && killall Dock +``` + + +## Applications + +### App Store + +#### List All Apps Downloaded from App Store +```bash +find /Applications -path '*Contents/_MASReceipt/receipt' -maxdepth 4 -print |\sed 's#.app/Contents/_MASReceipt/receipt#.app#g; s#/Applications/##' +``` + +### Apple Remote Desktop + +#### Remove Apple Remote Desktop Settings +```bash +sudo rm -rf /var/db/RemoteManagement ; \ +sudo defaults delete /Library/Preferences/com.apple.RemoteDesktop.plist ; \ +defaults delete ~/Library/Preferences/com.apple.RemoteDesktop.plist ; \ +sudo rm -r /Library/Application\ Support/Apple/Remote\ Desktop/ ; \ +rm -r ~/Library/Application\ Support/Remote\ Desktop/ ; \ +rm -r ~/Library/Containers/com.apple.RemoteDesktop +``` + +### iTunes + +#### Keyboard Media Keys +```bash +# Stop Responding to Key Presses +launchctl unload -w /System/Library/LaunchAgents/com.apple.rcd.plist + +# Respond to Key Presses (Default) +launchctl load -w /System/Library/LaunchAgents/com.apple.rcd.plist +``` + +### Mail + +#### Vacuum Mail Index +The AppleScript code below will quit Mail, vacuum the SQLite index, then re-open Mail. On a large email database that hasn't been optimized for a while, this can provide significant improvements in responsiveness and speed. +```applescript +(* +Speed up Mail.app by vacuuming the Envelope Index +Code from: http://www.hawkwings.net/2007/03/03/scripts-to-automate-the-mailapp-envelope-speed-trick/ +Originally by "pmbuko" with modifications by Romulo +Updated by Brett Terpstra 2012 +Updated by Mathias Törnblom 2015 to support V3 in El Capitan and still keep backwards compability +*) + +tell application "Mail" to quit +set os_version to do shell script "sw_vers -productVersion" +set mail_version to "V2" +considering numeric strings + if "10.10" <= os_version then set mail_version to "V3" +end considering + +set sizeBefore to do shell script "ls -lnah ~/Library/Mail/" & mail_version & "/MailData | grep -E 'Envelope Index$' | awk {'print $5'}" +do shell script "/usr/bin/sqlite3 ~/Library/Mail/" & mail_version & "/MailData/Envelope\\ Index vacuum" + +set sizeAfter to do shell script "ls -lnah ~/Library/Mail/" & mail_version & "/MailData | grep -E 'Envelope Index$' | awk {'print $5'}" + +display dialog ("Mail index before: " & sizeBefore & return & "Mail index after: " & sizeAfter & return & return & "Enjoy the new speed!") + +tell application "Mail" to activate +``` + +### Safari + +#### Enable Develop Menu and Web Inspector +```bash +defaults write com.apple.Safari IncludeInternalDebugMenu -bool true && \ +defaults write com.apple.Safari IncludeDevelopMenu -bool true && \ +defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true && \ +defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled -bool true && \ +defaults write NSGlobalDomain WebKitDeveloperExtras -bool true +``` + +#### Get Current Page Data +Other options: `get source`, `get text`. +```bash +osascript -e 'tell application "Safari" to get URL of current tab of front window' +``` + +### Sketch + +#### Export Compact SVGs +```bash +defaults write com.bohemiancoding.sketch3 exportCompactSVG -bool yes +``` + +### TextEdit + +#### Use Plain Text Mode as Default +```bash +defaults write com.apple.TextEdit RichText -int 0 +``` + + +## Backup + +### Time Machine + +#### Change Backup Interval +This changes the interval to 30 minutes. The integer value is the time in seconds. +```bash +sudo defaults write /System/Library/Launch Daemons/com.apple.backupd-auto StartInterval -int 1800 +``` + +#### Prevent Time Machine from Prompting to Use New Hard Drives as Backup Volume +```bash +defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true +``` + +#### Set Status +```bash +# Disable Local Time Machine Backups +hash tmutil &> /dev/null && sudo tmutil disablelocal + +# Enable Local Time Machine Backups (Default) +hash tmutil &> /dev/null && sudo tmutil enablelocal +``` + + +## Developer + +### Vim + +#### Compile Sane Vim +Compiling MacVim via Homebrew with all bells and whistles, including overriding system Vim. +```bash +brew install macvim --HEAD --with-cscope --with-lua --with-override-system-vim --with-luajit --with-python +``` + +#### Neovim +Install the development version of this modern Vim drop-in alternative via Homebrew. +```bash +brew tap neovim/neovim && \ +brew install --HEAD neovim +``` + +### Xcode + +#### Install Command Line Tools without Xcode +```bash +xcode-select --install +``` + +#### Remove All Unavailable Simulators +```bash +xcrun simctl delete unavailable +``` + + +## Disks and Volumes + +#### Disable Sudden Motion Sensor +Leaving this turned on is useless when you're using SSDs. +```bash +sudo pmset -a sms 0 +``` + +#### Eject All Mountable Volumes +The only reliable way to do this is by sending an AppleScript command to Finder. +```bash +osascript -e 'tell application "Finder" to eject (every disk whose ejectable is true)' +``` + +#### Repair File Permissions +You don't have to use the Disk Utility GUI for this. +```bash +sudo diskutil repairPermissions / +``` +> Beginning with OS X El Capitan, system file permissions are automatically protected. It's no longer necessary to verify or repair permissions with Disk Utility. ([Source](https://support.apple.com/en-us/HT201560)) + +#### Set Boot Volume +```bash +bless --mount "/path/to/mounted/volume" --setBoot +``` + +#### Show All Attached Disks and Partitions +```bash +diskutil list +``` + +#### View File System Usage +A continuous stream of file system access info. +```bash +sudo fs_usage +``` + +### Disk Images + +#### Create Disk Image From Folder Contents +```bash +hdiutil create -volname "Volume Name" -srcfolder /path/to/folder -ov diskimage.dmg +``` + +If you'd like to encrypt the disk image: +```bash +hdiutil create -encryption -stdinpass -volname "Volume Name" -srcfolder /path/to/folder -ov encrypted.dmg +``` + +By default, you'll be prompted for a password. You can automate that by piping in a password: +```bash +echo -n YourPassword | hdiutil create -encryption -stdinpass -volname "Volume Name" -srcfolder /path/to/folder -ov encrypted.dmg +``` + +#### Burn Disk Images to DVD +This command applies to .iso, .img and .dmg images. +```bash +hdiutil burn /path/to/image_file +``` + +#### Disable Disk Image Verification +```bash +defaults write com.apple.frameworks.diskimages skip-verify -bool true && \ +defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true && \ +defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true +``` + +#### Make Volume OS X Bootable +```bash +bless --folder "/path/to/mounted/volume/System/Library/CoreServices" --bootinfo --bootefi +``` + +#### Mount Disk Image +```bash +hdiutil attach /path/to/diskimage.dmg +``` + +#### Unmount Disk Image +```bash +hdiutil detach /dev/disk2s1 +``` + +#### Write Disk Image to Volume +Like the Disk Utility "Restore" function. +```bash +sudo asr -restore -noverify -source /path/to/diskimage.dmg -target /Volumes/VolumeToRestoreTo +``` + + +## Dock + +#### Add a Stack with Recent Applications +```bash +defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }' && \ +killall Dock +``` + +#### Add a Space +```bash +defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}' && \ +killall Dock +``` + +#### Set Auto Show/Hide Delay +The float number defines the show/hide delay in ms. +```bash +defaults write com.apple.Dock autohide-delay -float 0 && \ +killall Dock +``` + +#### Show Hidden App Icons +```bash +# Enable +defaults write com.apple.dock showhidden -bool true && \ +killall Dock + +# Disable +defaults write com.apple.dock showhidden -bool false && \ +killall Dock +``` + + +## Documents + +#### Convert File to HTML +Supported formats are plain text, rich text (rtf) and Microsoft Word (doc/docx). +```bash +textutil -convert html file.ext +``` + + +## Finder + +### Files and Folders + +#### Clear All ACLs +```bash +sudo chmod -RN /path/to/folder +``` + +#### Hide Folder in Finder +```bash +chflags hidden /path/to/folder/ +``` +#### Show All File Extensions +```bash +defaults write NSGlobalDomain AppleShowAllExtensions -bool true +``` + +#### Show Hidden Files +```bash +# Show All +defaults write com.apple.finder AppleShowAllFiles true + +# Restore Default File Visibility +defaults write com.apple.finder AppleShowAllFiles false +``` + +#### Remove Protected Flag +```bash +sudo chflags -R nouchg /path/to/file/or/folder +``` + +#### Show Full Path in Finder Title +```bash +defaults write com.apple.finder _FXShowPosixPathInTitle -bool true +``` + +#### Unhide User Library Folder +```bash +chflags nohidden ~/Library +``` + +#### Increase Number of Recent Places +```bash +defaults write .GlobalPreferences NSNavRecentPlacesLimit -int 10 && \ +killall Finder +``` + +### Layout + +#### Smooth Scrolling +Useful if you’re on an older Mac that messes up the animation. +```bash +# Disable +defaults write NSGlobalDomain NSScrollAnimationEnabled -bool false + +# Enable (Default) +defaults write NSGlobalDomain NSScrollAnimationEnabled -bool true +``` + +#### Rubberband Scrolling +```bash +# Disable +defaults write -g NSScrollViewRubberbanding -bool false + +# Enable (Default) +defaults write -g NSScrollViewRubberbanding -bool true +``` + +#### Expand Save Panel by Default +```bash +defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true && \ +defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true +``` + +#### Desktop Icon Visibility +```bash +# Hide Icons +defaults write com.apple.finder CreateDesktop -bool false && \ +killall Finder + +# Show Icons (Default) +defaults write com.apple.finder CreateDesktop -bool true && \ +killall Finder +``` + +#### Path Bar +```bash +# Show +defaults write com.apple.finder ShowPathbar -bool true + +# Hide (Default) +defaults write com.apple.finder ShowPathbar -bool false +``` + +#### Scrollbar Visibility +Possible values: `WhenScrolling`, `Automatic` and `Always`. +```bash +defaults write NSGlobalDomain AppleShowScrollBars -string "Always" +``` + +#### Status Bar +```bash +# Show +defaults write com.apple.finder ShowStatusBar -bool true + +# Hide (Default) +defaults write com.apple.finder ShowStatusBar -bool false +``` + +#### Save to Disk by Default +Sets default save target to be a local disk, not iCloud. +```bash +defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false +``` + +#### Set Current Folder as Default Search Scope +```bash +defaults write com.apple.finder FXDefaultSearchScope -string "SCcf" +``` + +#### Set Default Finder Location to Home Folder +```bash +defaults write com.apple.finder NewWindowTarget -string "PfLo" && \ +defaults write com.apple.finder NewWindowTargetPath -string "file://${HOME}" +``` + +#### Set Sidebar Icon Size +Sets size to 'medium'. +```bash +defaults write NSGlobalDomain NSTableViewDefaultSizeMode -int 2 +``` + +### Metadata Files + +#### Disable Creation of Metadata Files on Network Volumes +Avoids creation of `.DS_Store` and AppleDouble files. +```bash +defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true +``` + +#### Disable Creation of Metadata Files on USB Volumes +Avoids creation of `.DS_Store` and AppleDouble files. +```bash +defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true +``` + +### Opening Things + +#### Change Working Directory to Finder Path +If multiple windows are open, it chooses the top-most one. +```bash +cd "$(osascript -e 'tell app "Finder" to POSIX path of (insertion location as alias)')" +``` + +#### Open URL +```bash +open http://www.github.com +``` + +#### Open File +```bash +open README.md +``` + +#### Open Applications +You can open applications using `-a`. +```bash +open -a "Google Chrome" http://www.github.com +``` + +#### Open Folder +```bash +open /path/to/folder/ +``` + +#### Open Current Folder +```bash +open . +``` + + +## Fonts + +#### Clear Font Cache for Current User +To clear font caches for all users, put `sudo` in front of this command. +```bash +atsutil databases -removeUser && \ +atsutil server -shutdown && \ +atsutil server -ping +``` + + +## Functions + +Please see [this file](functions.md). + + +## Hardware + +### Hardware Information + +#### List All Hardware Ports +```bash +networksetup -listallhardwareports +``` + +#### Remaining Battery Percentage +```bash +pmset -g batt | egrep "([0-9]+\%).*" -o --colour=auto | cut -f1 -d';' +``` + +#### Remaining Battery Time +```bash +pmset -g batt | egrep "([0-9]+\%).*" -o --colour=auto | cut -f3 -d';' +``` + +#### Show Connected Device's UDID +```bash +system_profiler SPUSBDataType | sed -n -e '/iPad/,/Serial/p' -e '/iPhone/,/Serial/p' +``` + +#### Show Current Screen Resolution +```bash +system_profiler SPDisplaysDataType | grep Resolution +``` + +#### Show CPU Brand String +```bash +sysctl -n machdep.cpu.brand_string +``` + +### Power Management + +#### Prevent System Sleep +Prevent sleep for 1 hour: +```bash +caffeinate -u -t 3600 +``` + +#### Show All Power Management Settings +```bash +sudo pmset -g +``` + +#### Put Display to Sleep after 15 Minutes of Inactivity +```bash +sudo pmset displaysleep 15 +``` + +#### Put Computer to Sleep after 30 Minutes of Inactivity +```bash +sudo pmset sleep 30 +``` + +#### Check System Sleep Idle Time +```bash +sudo systemsetup -getcomputersleep +``` + +#### Set System Sleep Idle Time to 60 Minutes +```bash +sudo systemsetup -setcomputersleep 60 +``` + +#### Turn Off System Sleep Completely +```bash +sudo systemsetup -setcomputersleep Never +``` + +#### Automatic Restart on System Freeze +```bash +sudo systemsetup -setrestartfreeze on +``` + +#### Chime When Charging +Play iOS charging sound when MagSafe is connected. +```bash +# Enable +defaults write com.apple.PowerChime ChimeOnAllHardware -bool true && \ +open /System/Library/CoreServices/PowerChime.app + +# Disable (Default) +defaults write com.apple.PowerChime ChimeOnAllHardware -bool false && \ +killall PowerChime +``` + + +## Input Devices + +### Keyboard + +#### Auto-Correct +```bash +# Disable +defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false + +# Enable (Default) +defaults write -g NSAutomaticSpellingCorrectionEnabled -bool true + +# Show Status +defaults read -g NSAutomaticSpellingCorrectionEnabled +``` + +#### Key Repeat +Disable the default "press and hold" behavior. +```bash +# Enable Key Repeat +defaults write -g ApplePressAndHoldEnabled -bool false + +# Disable Key Repeat +defaults write -g ApplePressAndHoldEnabled -bool true +``` + +#### Key Repeat Rate +Sets a very fast repeat rate, adjust to taste. +```bash +defaults write NSGlobalDomain KeyRepeat -int 0.02 +``` + + +## Media + +### Audio + +#### Convert Audio File to iPhone Ringtone +```bash +afconvert input.mp3 ringtone.m4r -f m4af +``` + +#### Disable Sound Effects on Boot +```bash +sudo nvram SystemAudioVolume=" " +``` + +#### Mute Audio Output +```bash +osascript -e 'set volume output muted true' +``` + +#### Set Audio Volume +```bash +osascript -e 'set volume 4' +``` + +#### Play Audio File +You can play all audio formats that are natively supported by QuickTime. +```bash +afplay -q 1 filename.mp3 +``` + +#### Speak Text with System Default Voice +```bash +say 'All your base are belong to us!' +``` + +### Video + +#### Auto-Play Videos in QuickTime Player +```bash +defaults write com.apple.QuickTimePlayerX MGPlayMovieOnOpen 1 +``` + + +## Networking + +### Bonjour + +#### Bonjour Service +```bash +# Disable +sudo defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array-add "-NoMulticastAdvertisements" + +# Enable (Default) +sudo defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array "/usr/sbin/mDNSResponder" "-launchd" +``` + +### DHCP + +#### Renew DHCP Lease +```bash +sudo ipconfig set en0 DHCP +``` + +#### Show DHCP Info +```bash +ipconfig getpacket en0 +``` + +### DNS + +#### Clear DNS Cache +```bash +sudo dscacheutil -flushcache && \ +sudo killall -HUP mDNSResponder +``` + +### Hostname + +#### Set Computer Name/Host Name +```bash +sudo scutil --set ComputerName "newhostname" && \ +sudo scutil --set HostName "newhostname" && \ +sudo scutil --set LocalHostName "newhostname" && \ +sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "newhostname" +``` + +### Networking Tools + +#### Ping a Host to See Whether It’s Available +```bash +ping -o github.com +``` + +#### Troubleshoot Routing Problems +```bash +traceroute github.com +``` + +### TCP/IP + +#### Show Application Using a Certain Port +This outputs all applications currently using port 80. +```bash +sudo lsof -i :80 +``` + +#### Show External IP Address +```bash +dig +short myip.opendns.com @resolver1.opendns.com +``` + +### Wi-Fi + +#### Join a Wi-Fi Network +```bash +networksetup -setairportnetwork en0 WIFI_SSID WIFI_PASSWORD +``` + +#### Scan Available Access Points +Create a symbolic link to the airport command for easy access: +```bash +sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/local/bin/airport +``` +Run a wireless scan: +```bash +airport -s +``` + +#### Show Current SSID +```bash +/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I | awk '/ SSID/ {print substr($0, index($0, $2))}' +``` + +#### Show Local IP Address +```bash +ipconfig getifaddr en0 +``` + +#### Show Wi-Fi Connection History +```bash +defaults read /Library/Preferences/SystemConfiguration/com.apple.airport.preferences | grep LastConnected -A 7 +``` + +#### Show Wi-Fi Network Passwords +Exchange SSID with the SSID of the access point you wish to query the password from. +```bash +security find-generic-password -D "AirPort network password" -a "SSID" -gw +``` + +#### Turn on Wi-Fi Adapter +```bash +networksetup -setairportpower en0 on +``` + +## Package Managers + +- [Fink](http://www.finkproject.org) - The full world of Unix Open Source software for Darwin. +- [Homebrew](http://brew.sh) - The missing package manager for OS X. +- [MacPorts](https://www.macports.org) - Compile, install and upgrade either command-line, X11 or Aqua based open-source software. + + +## Printing + +#### Clear Print Queue +```bash +cancel -a - +``` + +#### Expand Print Panel by Default +```bash +defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true && \ +defaults write NSGlobalDomain PMPrintingExpandedStateForPrint2 -bool true +``` + +#### Quit Printer App After Print Jobs Complete +```bash +defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true +``` + + +## Security + +### Application Firewall + +#### Firewall Service +```bash +# Show Status +sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate + +# Enable +sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate on + +# Disable (Default) +sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off +``` + +#### Add Application to Firewall +```bash +sudo /usr/libexec/ApplicationFirewall/socketfilterfw --add /path/to/file +``` + +### Gatekeeper + +#### Add Gatekeeper Exception +```bash +spctl --add /path/to/Application.app +``` + +#### Remove Gatekeeper Exception +```bash +spctl --remove /path/to/Application.app +``` + +### Passwords + +#### Generate Secure Password and Copy to Clipboard +First, install `pwgen` via Homebrew, etc. +```bash +pwgen -Cs 20 1 | tr -d ' ' | tr -d '\n' | pbcopy +``` + +### Physical Access + +#### Launch Screen Saver +```bash +open /System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app +``` + +#### Lock Screen +```bash +/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resources/CGSession -suspend +``` + +### Wiping Data + +#### Securely Remove File +```bash +srm /path/to/file +``` + +#### Securely Remove Folder +```bash +srm -r /path/to/folder/ +``` + +#### Securely Remove Path (Force) +```bash +srm -rf /path/to/complete/destruction +``` + + +## Search + +### Find + +#### Recursively Delete .DS_Store Files +```bash +find . -type f -name '*.DS_Store' -ls -delete +``` + +### Locate + +#### Build Locate Database +```bash +sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist +``` + +#### Search via Locate +The `-i` modifier makes the search case insensitive. +```bash +locate -i *.jpg +``` + + +## System + +### AirDrop + +#### Enable AirDrop over Ethernet and on Unsupported Macs +```bash +defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true +``` + +### AppleScript + +#### Execute AppleScript +```bash +osascript /path/to/script.scpt +``` + +### Basics + +#### Restart +```bash +sudo reboot +``` + +#### Shutdown +```bash +sudo poweroff +``` + +#### Show Build Number of OS +```bash +sw_vers +``` + +#### Uptime +How long since your last restart. +```bash +uptime +``` + +### Clipboard + +#### Copy data to Clipboard +```bash +cat whatever.txt | pbcopy +``` + +#### Convert Clipboard to Plain Text +```bash +pbpaste | textutil -convert txt -stdin -stdout -encoding 30 | pbcopy +``` + +#### Convert Tabs to Spaces for Clipboard Content +```bash +pbpaste | expand | pbcopy +``` + +#### Copy data from Clipboard +```bash +pbpaste > whatever.txt +``` + +#### Sort and Strip Duplicate Lines from Clipboard Content +```bash +pbpaste | sort | uniq | pbcopy +``` + +### FileVault + +#### Automatically Unlock FileVault on Restart +If FileVault is enabled on the current volume, it restarts the system, bypassing the initial unlock. The command may not work on all systems. +```bash +sudo fdesetup authrestart +``` + +#### FileVault Service +```bash +# Status +sudo fdesetup status + +# Enable +sudo fdesetup enable + +# Disable (Default) +sudo fdestatus disable +``` + +### Information/Reports + +#### Generate Advanced System and Performance Report +```bash +sudo sysdiagnose -f ~/Desktop/ +``` + +### Kernel Extensions + +#### Display Status of Loaded Kernel Extensions +```bash +sudo kextstat -l +``` + +#### Load Kernel Extension +```bash +sudo kextload -b com.apple.driver.ExampleBundle +``` + +#### Unload Kernel Extensions +```bash +sudo kextunload -b com.apple.driver.ExampleBundle +``` + +### LaunchAgents + +Please see [this file](launchagents.md). + + +### LaunchServices + +#### Rebuild LaunchServices Database +To be independent of OS X version, this relies on `locate` to find `lsregister`. If you do not have your `locate` database built yet, [do it](#build-locate-database). +```bash +sudo $(locate lsregister) -kill -seed -r +``` + +### Login Window + +#### Set Login Window Text +```bash +sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "Your text" +``` + +### Memory Management + +#### Purge memory cache +```bash +sudo purge +``` + +#### Show Memory Statistics +```bash +# One time +vm_stat + +# Table of data, repeat 10 times total, 1 second wait between each poll +vm_stat -c 10 1 +``` + +### Notification Center + +#### Notification Center Service +```bash +# Disable +launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist && \ +killall -9 NotificationCenter + +# Enable (Default) +launchctl load -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist +``` + +### QuickLook + +#### Preview via QuickLook +```bash +qlmanage -p /path/to/file +``` + +### Root User + +```bash +# Enable +dsenableroot + +# Disable +dsenableroot -d +``` + +### Safe Mode Boot + +```bash +# Status +nvram boot-args + +# Enable +sudo nvram boot-args="-x" + +# Disable +sudo nvram boot-args="" +``` + +### Screenshots + +#### Take Delayed Screenshot +Takes a screenshot as JPEG after 3 seconds and displays in Preview. +```bash +screencapture -T 3 -t jpg -P delayedpic.jpg +``` + +#### Save Screenshots to Given Location +Sets location to `~/Desktop`. +```bash +defaults write com.apple.screencapture location ~/Desktop && \ +killall SystemUIServer +``` + +#### Save Screenshots in Given Format +Sets format to `png`. Other options are `bmp`, `gif`, `jpg`, `jpeg`, `pdf`, `tiff`. +```bash +defaults write com.apple.screencapture type -string "png" +``` + +#### Disable Shadow in Screenshots +```bash +defaults write com.apple.screencapture disable-shadow -bool true && \ +killall SystemUIServer +``` + +#### Set Default Screenshot Name +Date and time remain unchanged. +```bash +defaults write com.apple.screencapture name "Example name" && \ +killall SystemUIServer +``` + +### Software Installation + +#### Install PKG +```bash +installer -pkg /path/to/installer.pkg -target / +``` + +### Software Update + +#### Install All Available Software Updates +```bash +sudo softwareupdate -ia +``` + +#### Set Software Update Check Interval +Set to check daily instead of weekly. +```bash +defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1 +``` + +#### Show Available Software Updates +```bash +sudo softwareupdate -l +``` + +#### Set Software Update Server +This should only be done for testing purposes or unmanaged clients. To use network-wide, either correctly set up DNS along with [Apple SUS service](http://krypted.com/mac-security/using-the-software-update-service-on-mountain-lion-server/) and bind your clients via OpenDirectory. Alternatively, use [Reposado](https://github.com/wdas/reposado) together with correct network DNS settings to make resolution transparent. [Margarita](https://github.com/jessepeterson/margarita) looks nice to have as well. +```bash +# Use own SUS +sudo defaults write /Library/Preferences/com.apple.SoftwareUpdate CatalogURL http://su.example.com:8088/index.sucatalog + +# Reset to Apple SUS +sudo defaults delete /Library/Preferences/com.apple.SoftwareUpdate CatalogURL +``` + +### Spotlight + +#### Spotlight Indexing +```bash +# Disable +mdutil -i off -d /path/to/volume + +# Enable (Default) +mdutil -i on /path/to/volume +``` + +#### Erase Spotlight Index and Rebuild +```bash +mdutil -E /path/to/volume +``` + +#### Search via Spotlight +```bash +mdfind -name 'searchterm' +``` + +### System Integrity Protection + +#### Disable System Integrity Protection +Reboot while holding Cmd + R, open the Terminal application and enter: +```bash +csrutil disable && reboot +``` + +#### Enable System Integrity Protection +Reboot while holding Cmd + R, open the Terminal application and enter: +```bash +csrutil enable && reboot +``` + + +## Terminal + +#### Ring Terminal Bell +Rings the terminal bell (if enabled) and puts a badge on it. +```bash +tput bel +``` + +### Alternative Terminals + +- [iTerm 2](https://iterm2.com) - A better Terminal.app. +- [TotalTerminal](http://totalterminal.binaryage.com) - A system-wide terminal available on a hot-key. + +### Shells + +#### Bash +Install the latest version and set as current users' default shell: +```bash +brew install bash && \ +sudo echo $(brew --prefix)/bin/bash >> /etc/shells && \ +chsh -s $(brew --prefix)/bin/bash +``` + +- [Homepage](https://www.gnu.org/software/bash/) - The default shell for OS X and most other Unix-based operating systems. + +#### fish +Install the latest version and set as current users' default shell: +```bash +brew install fish && \ +chsh -s $(brew --prefix)/bin/fish +``` + +- [Homepage](http://fishshell.com) - A smart and user-friendly command line +shell for OS X, Linux, and the rest of the family. +- [The Fishshell Framework](https://github.com/oh-my-fish/oh-my-fish) - Provides core infrastructure to allow you to install packages which extend or modify the look of your shell. + +#### Zsh +Install the latest version and set as current users' default shell: +```bash +brew install zsh && \ +sudo sh -c 'echo $(brew --prefix)/bin/zsh >> /etc/shells' && \ +chsh -s $(brew --prefix)/bin/zsh +``` + +- [Homepage](http://www.zsh.org) - Zsh is a shell designed for interactive use, although it is also a powerful scripting language. +- [Oh My Zsh](http://ohmyz.sh) - An open source, community-driven framework for managing your Zsh configuration. +- [Prezto](https://github.com/sorin-ionescu/prezto) - A speedy Zsh framework. Enriches the command line interface environment with sane defaults, aliases, functions, auto completion, and prompt themes. +- [zgen](https://github.com/tarjoilija/zgen) - Another open source framework for managing your zsh configuration. Zgen will load oh-my-zsh compatible plugins and themes and has the advantage of both being faster and automatically cloning any plugins used in your configuration for you. + +### Terminal Fonts + +- [Anonymous Pro](http://www.marksimonson.com/fonts/view/anonymous-pro) - A family of four fixed-width fonts designed with coding in mind. +- [DejaVu Sans Mono](http://dejavu-fonts.org/wiki/Main_Page) - A font family based on the Vera Fonts. +- [Hack](http://sourcefoundry.org/hack/) - Hack is hand groomed and optically balanced to be your go-to code face. +- [Inconsolata](http://levien.com/type/myfonts/inconsolata.html) - A monospace font, designed for code listings and the like. +- [Input](http://input.fontbureau.com) - A flexible system of fonts designed specifically for code. +- [Meslo](https://github.com/andreberg/Meslo-Font) - Customized version of Apple's Menlo font. +- [Powerline Fonts](https://github.com/powerline/fonts) - Repo of patched fonts for the Powerline plugin. +- [Source Code Pro](https://adobe-fonts.github.io/source-code-pro/) - A monospaced font family for user interfaces and coding environments. + + +## License + +Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. diff --git a/assets/logo-tr.png b/assets/logo-tr.png new file mode 100644 index 0000000000000000000000000000000000000000..ba56d7a344809f12f41b92a1dc792983d673890e GIT binary patch literal 9862 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 cjddTCQr6)$8?09S1eO65