navi/cheats/shell.cheat

215 lines
3.7 KiB
Text
Raw Normal View History

2020-02-09 13:14:11 +00:00
% Shell Usage
# Re-call last input with sudo
sudo !!
# Help
help cd / help dir (...)
# Finding Help
apropos directory / apropos search (...)
# Define custom startup screen
sudo nano /etc/motd
# Run a script as background process
2020-02-09 13:19:05 +00:00
<process> &
2020-02-09 13:14:11 +00:00
2020-02-09 13:18:08 +00:00
#List all running processes
ps -A
2020-02-09 13:14:11 +00:00
# Kill a running process
2020-02-09 13:18:08 +00:00
killall <Process-name>
2020-02-09 13:14:11 +00:00
% Shell System
# Get the current path
pwd
# Get the current hostname
hostname
# Get the current users
users
# Show calendar
cal
# Show today's date
date
# Exit terminal
exit
% Shell Permissions
# Use -R option to change permissions recursively.
ps -ef | grep apache | grep -v grep
# Change group
2020-02-09 13:18:08 +00:00
chgrp <group-name-from> <group-name-to>
2020-02-09 13:14:11 +00:00
% Shell Directories
# List directory contents
ls
# List all directory contents
ll
# List all directory contents sorted by time edited
ls -alt
# List directory (wildcard matching)
ls *.<txt>
# List all files of type
find . -name *.<txt> -print
# Go back to previous directory
cd -
# Make (empty) directory
mkdir <dirname>
# Remove (empty) directory
2020-02-09 13:18:08 +00:00
rmdir <dirname>
2020-02-09 13:14:11 +00:00
# Remove directory with all contents without prompt
2020-02-09 13:18:08 +00:00
rm -rf <dirname>
2020-02-09 13:14:11 +00:00
# Remove directory contents and keep directory
rm -rf *
2020-02-09 13:18:08 +00:00
# Change directory
cd <dirname>
2020-02-09 13:14:11 +00:00
% shell Symlinks
# Create symlink
ln -s <source-dirname> <destination-dirname>
# Update symlink
ln -sfn <source-dirname> <destination-dirname>
# Remove symlink
unlink <sample-dirname>
% Shell Files
# Make (empty) file
touch <filename-txt>
# Duplicate file
2020-02-09 13:18:08 +00:00
cp <filename> <file-copyname>
2020-02-09 13:14:11 +00:00
# Copy/Page folder with content
cp -a <old-folder>/ <new-folder>
# Move/Rename file
2020-02-09 13:18:08 +00:00
mv <current-filename-path> <new-filename-path>
2020-02-09 13:14:11 +00:00
# Move/Rename file and prompt before overwriting an existing file
2020-02-09 13:18:08 +00:00
mv -i <current-filename> <new-filename>
2020-02-09 13:14:11 +00:00
# Remove file
rm <filename-txt>
# Write to file (will overwrite existing content)
cat > <filename-txt>
# Search for a filename-(not content!) in the current directory
find <filename-txt>
# Search for a string inside all files in the current directory and subdrectories
grep -r <string> *
# Search and replace within file
2020-02-09 13:18:08 +00:00
sed -i s/<original-text>/<new-text>/g <filename-txt>
2020-02-09 13:14:11 +00:00
# MD5 hash for files
md5 <filename-txt>
# MD5 hash for folders
tar c <folder> | md5sum
# Encrypt file
2020-02-09 13:18:08 +00:00
openssl enc -aes-256-cbc -e -in <sample-filename-txt> -out <sample-encrypted-txt>
2020-02-09 13:14:11 +00:00
# Decrypt file
openssl enc -aes-256-cbc -d -in <sample-encrypted> -out <sample-filename>
% Shell Server
# Access via ssh
2020-02-09 13:44:43 +00:00
ssh <username-remote>
2020-02-09 13:14:11 +00:00
# Copy file from server to local
2020-02-09 13:44:43 +00:00
scp <username-remote>:<file-to-send-path> <path-to-recieve>
2020-02-09 13:14:11 +00:00
# Copy file from local to server
2020-02-09 13:44:43 +00:00
scp <file-to-send> <username-remote>:<where-to-put>
2020-02-09 13:14:11 +00:00
# Escape files with spaces in name like this
2020-02-09 13:46:40 +00:00
<path-to-file>\\\ <name-png>
2020-02-09 13:14:11 +00:00
% Shell System
# Show disc space
df -h
# Show disc space (inodes)
df -i
# Show disc space for current directory
du -hs
# Current processes (also CPS usage)
top or htop
# Show running php processes
ps aux | grep php
# Monitor error log (stream as file grows)
tail error.log -f -n 0
% Shell Apps
# Start appliction
2020-02-09 13:18:08 +00:00
xdg-open <programme>
2020-02-09 13:14:11 +00:00
# Open finder with current folder
open .
% Shell Variables
# Register variable
2020-02-09 13:18:08 +00:00
export <TESTING>=<Variable-text>
2020-02-09 13:14:11 +00:00
# Echo variable
2020-02-09 13:18:08 +00:00
echo $<Variable>
2020-02-09 13:14:11 +00:00
# Unset variable
2020-02-09 13:18:08 +00:00
unset <Variable>
2020-02-09 13:14:11 +00:00
% Shell Output & Redirects
# Write to file
echo <Hello> > <hello-txt>
# Append content from a file to another file
cat <file1-txt> >> <file2-txt>
# Add the amount of lines, words, and characters to <file2-txt>
cat <file1-txt> | <word-count> | cat > <file2-txt>
# Sort the content of a file (like cat)
2020-02-09 13:18:08 +00:00
sort <hello-txt>
2020-02-09 13:14:11 +00:00
# Save to sorted content to a new file
cat <file1-txt> | sort > <sorted-file1-txt>
# Sort and remove duplicates and save to a new file
2020-02-09 13:19:05 +00:00
sort <file1-txt> | uniq > <uniq-file1-txt>