mirror of
https://github.com/cheat/cheat.git
synced 2025-07-20 04:31:46 +02:00
autocompletion
cheatsheets
7z
__init__.py
ab
apk
apparmor
apt-cache
apt-get
aptitude
asciiart
asterisk
at
awk
bash
chmod
chown
convert
crontab
curl
cut
date
dd
df
dhclient
diff
distcc
emacs
find
gcc
gdb
git
gpg
grep
gs
head
history
ifconfig
indent
iptables
irssi
iwconfig
journalctl
less
ln
ls
lsof
markdown
mkdir
mount
mysql
mysqldump
ncat
netstat
nmap
notify-send
od
openssl
pacman
pdftk
php
ps
python
rm
rsync
sam2p
scp
screen
sed
shred
sockstat
sort
split
sqlmap
ssh
ssh-copy-id
ssh-keygen
stdout
strace
systemctl
tail
tar
tcpdump
tmux
top
truncate
uname
vim
wget
xargs
yaourt
youtube-dl
yum
.gitignore
LICENSE
README.md
cheat
setup.py
9 lines
151 B
Plaintext
9 lines
151 B
Plaintext
# To show the first 10 lines of file
|
|
head file
|
|
|
|
# To show the first N lines of file
|
|
head -n N file
|
|
|
|
# To show the first N bytes of file
|
|
head -c N file
|