Ctrl+Alt+F1 进入tty1,命令行模式,第一个虚拟终端
Ctrl+Alt+F2 进入tty2
Ctrl+Alt+F3 进入tty3
Ctrl+Alt+F4 进入tty4
#!/bin/bash | |
cd ~/roms/cyanogenmod/out/target/product/i9300/ | |
yafc <<** | |
open ftp://dschense:[email protected]:21/ | |
cd Roms/CM | |
put -f -r ~/roms/cyanogenmod/out/target/product/i9300/cm-* | |
close |
/* Copyright (c) 2016, The Mokee Open Source, All rights reserved. | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License version 2 and | |
* only version 2 as published by the Free Software Foundation. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. |
/* | |
* Overclocking driver for Qualcomm MSM8960 (Krait) devices, such as the | |
* HTC One XL (AT&T/Rogers/Asia) and HTC One S. This method is recommended for | |
* rooted devices without kernel source or a locked bootloader. | |
* | |
* Successfully compiled against Code Aurora's ics_chocolate branch MSM kernel, | |
* but requires a little tweaking to Module.symvers before it will successfully | |
* load. | |
* | |
* Please encourage HTC and AT&T to allow the AT&T HTC One X's bootloader to be |
#include <iostream> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <vector> | |
#include <map> | |
using namespace std; | |
class table { | |
private: | |
string number; |
#include <ctype.h> | |
#include <errno.h> | |
#include <fcntl.h> | |
#include <getopt.h> | |
#include <limits.h> | |
#include <linux/input.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/reboot.h> |
package main | |
import ( | |
"fmt" | |
"os" | |
"strconv" | |
) | |
//tt := make(map[int] Timetable) |
package main | |
import ( | |
"runtime" | |
"fmt" | |
) | |
func test(c chan bool, b bool) { | |
x := 0.0 | |
for i := 0.0 ; i < 10000000 ; i++ { |
package main | |
import ( | |
"fmt" | |
"log" | |
"os" | |
"path/filepath" | |
) | |
var bigDigits = [][]string{ |