mirror of
https://github.com/cheat/cheat.git
synced 2024-11-13 23:51:09 +01:00
Merge branch 'master' of https://github.com/ozdemircili/cheat into ozdemircili-master
* 'master' of https://github.com/ozdemircili/cheat: Added history cheatsheet Added history cheatsheet History Added histroy cheatsheet Took out listing of Readme and License file on cheatsheets Added mysql cheatsheet Added lsof cheatsheet Added 2 new cheatsheets
This commit is contained in:
commit
37b9e84497
4 changed files with 14 additions and 1 deletions
5
cheat
5
cheat
|
@ -41,7 +41,9 @@ def cheat_files(cheat_directories):
|
|||
for cheat_dir in reversed(cheat_directories):
|
||||
cheats.update(dict([(cheat, cheat_dir)
|
||||
for cheat in os.listdir(cheat_dir)
|
||||
if not cheat.startswith('.')
|
||||
if not cheat.endswith('md')
|
||||
and not cheat.startswith('.')
|
||||
and not cheat.startswith('LICENSE')
|
||||
and not cheat.startswith('__')]))
|
||||
return cheats
|
||||
|
||||
|
@ -82,6 +84,7 @@ def main():
|
|||
# if it does not, say so
|
||||
else:
|
||||
print 'No cheatsheet found for %s.' % keyphrase
|
||||
|
||||
|
||||
|
||||
def pretty_print(filename):
|
||||
|
|
2
cheatsheets/history
Normal file
2
cheatsheets/history
Normal file
|
@ -0,0 +1,2 @@
|
|||
# To see most used top 10 commands:
|
||||
history | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n10
|
3
cheatsheets/lsof
Normal file
3
cheatsheets/lsof
Normal file
|
@ -0,0 +1,3 @@
|
|||
# To find listening ports
|
||||
lsof -Pnl +M -i4
|
||||
|
5
cheatsheets/mysql
Normal file
5
cheatsheets/mysql
Normal file
|
@ -0,0 +1,5 @@
|
|||
# To create a database in utf8 charset
|
||||
CREATE DATABASE owa CHARACTER SET utf8 COLLATE utf8_general_ci;
|
||||
|
||||
# To add a user and give rights on the given database
|
||||
GRANT ALL PRIVILEGES ON database.* TO 'user'@'localhost'IDENTIFIED BY 'password' WITH GRANT OPTION;
|
Loading…
Reference in a new issue