You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apt-get is the command-line tool for handling packages, and may be considered the user's "back-end" to other tools using the APT library. Several "front-end" interfaces exist, such as dselect(1), aptitude(8), synaptic(8) and wajig(1).
Show the installed and the remote version (install candidate) of a package.
apt-cache policy <package>
Xclip - Manage Clipboard from Terminal
Reads from standard in, or from one or more files, and makes the data available as an X selection for pasting into X applications. Prints current X selection to standard out.
This creates a new bash process that allows you to add private keys. When adding a new private key you will be prompted for the passphrase once and only once.
ssh-add ~/.ssh/id_rsa
DU
Summarize disk usage of each FILE, recursively for directories
Estimate file space usage of current directory
du -sh
Grep
grep searches the named input FILEs (or standard input if no files are named, or if a single hyphen-minus (-) is given as file name) for lines containing a match to the given PATTERN. By default, grep prints the matching lines.
In addition, three variant programs egrep, fgrep and rgrep are available. egrep is the same as grep -E. fgrep is the same as grep -F. rgrep is the same as grep -r. Direct invocation as either egrep or fgrep is deprecated, but is provided to allow historical applications that rely on them to run unmodified.
Find string in different files
grep -Hin {{needed}} ./*
chmod
Change the mode of each FILE to MODE
Default usage
chmod [OPTION]... MODE[,MODE]... FILE...
Recursively give directories read&execute privileges
find /path/to/base/dir -type d -exec chmod 755 {} +
# MariaDB 10.0 repository list
deb http://ftp.igh.cnrs.fr/pub/mariadb/repo/10.0/debian squeeze main
deb-src http://ftp.igh.cnrs.fr/pub/mariadb/repo/10.0/debian squeeze main
# MariaDB 10.0 repository list
deb http://ftp.igh.cnrs.fr/pub/mariadb/repo/5.5/debian squeeze main
deb-src http://ftp.igh.cnrs.fr/pub/mariadb/repo/5.5/debian squeeze main