Category: Tools
xcode-select: error: tool ‘xcodebuild’ requires Xcode, but active developer directory ‘/Library/Developer/CommandLineTools’ is a command line tools instance
Solution: Type below command in your terminal sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
Splitting audio files into smaller files
If you have a very large audio file, splitting it into smaller files of a fixed time duration can make it easier to deal with, especially if its some kind of audio book. I...
can not run shell script from command line on mac
To run any script you need to have executable write of that script. chmod 755 ./script_name.sh chmod 755 – gives you full permission. It gives only read and execute permission to everyone else.
How to pass arguments to a bash function?
#!/bin/bash function foo() { # Hello echo “First Argument = $1” # World echo “Second Argument = $2” } foo Hello World
How to see the changes in any git commit from command line?
git show COMMIT Further reading: git show
How to remove untracked files using git?
git clean removes all the untracked files from the project. It is very in large projects where you have lots of build related, log files which are not necessary to build the product. If...
How to verify accessibility elements on windows 10 \ uwp?
inspect.exe can be used to examine accessibility data on the application. Inspect is installed as part of the Windows Software Development Kit (SDK), it is not distributed as a separate download. If you have...
How to install / download inspect.exe in windows 10?
inspect.exe can be used to examine accessibility data on the application. Inspect is installed as part of the Windows Software Development Kit (SDK), it is not distributed as a separate download. If you have...
xCode: gulp: command not found
If you’re using gulp or similar build tools to build your project you might run into this issue. /Users/username/Library/Developer/Xcode/DerivedData/project/filename.sh: line 4: gulp: command not found Here, xCode can not find gulp because it uses...
Recent Comments