ADB Command
adb install app/build/outputs/apk/app-debug.apk
adb install app/build/outputs/apk/app-debug.apk
>> gcc mysql_me.c `mysql_config --cflags --libs`
ps aux | grep firefox
sudo killall cupsd
sudo apt-get install htop
sudo renice -5 2744 // Give Priority 2744 0 to -5
df -ah
ls -alh /proc // List of all active processes
ls -alh /proc/1 | less
#include <iostream>
#include <vector>
int main()
{
std::vector<int> v = {0, 1, 2, 3, 4, 5};
for(const int &i : v) // access by const reference
>> qmake
>> mingw32-make -f Makefile.Debug
[-f Makefile.Debug = Optional]
gcc hello.c -o hello.o -lws2_32
"C:\Program Files (x86)\Android\android-sdk\temp\ToolPackage.old01\android.bat"
>> gcc shell.c sqlite3.c -lpthread -o gccsqlite3.exe
>> cl shell.c sqlite3.c -Fesqlite3.exe
>> grep -r "Searching_Text" *
>> grep -r --include "*.txt" texthere .
>> grep -r ----exclude "*.txt" texthere .
android {
lintOptions {
abortOnError false
}
}
int i = 65;
char c = i;
string s;
stringstream ss;
ss << c;
ss >> s;
cout << s << endl;