
Terminal - All commands - 10,564 results
tar czf - /directory/to/tar | ccrypt -k yourpassword | split -b50m - /final/encrypted.cpt
This is sample output - yours may be different.
This is sample output - yours may be different.
1.|-- 10.0.0.2 0.0% 10 0.3 0.3 0.2 0.6 0.1
2.|-- Vigor.router 0.0% 10 0.6 0.5 0.3 0.8 0.1
3.|-- 82-118-126-121.static.dsl 0.0% 10 1.3 1.2 1.1 1.3 0.1
4.|-- ae0-345.ndc-core2.uk.timi 0.0% 10 1.3 2.5 1.3 12.3 3.4
5.|-- lonap1.sov-bdr.uk.timico. 0.0% 10 5.4 6.0 5.3 8.0 0.9
6.|-- google1.lonap.net 0.0% 10 5.9 5.4 5.3 5.9 0.2
7.|-- 209.85.255.76 0.0% 10 5.6 14.4 5.6 91.6 27.1
8.|-- 209.85.253.92 0.0% 10 6.1 6.1 6.0 6.2 0.1
9.|-- 72.14.232.134 0.0% 10 11.7 11.8 11.6 12.4 0.3
10.|-- 209.85.252.83 0.0% 10 11.5 11.5 11.4 11.8 0.1
11.|-- ??? 100.0 10 0.0 0.0 0.0 0.0 0.0
12.|-- wg-in-f105.1e100.net 0.0% 10 11.5 11.4 11.3 11.5 0.1
In the sample output I used google.com.
git-createrepo() { repos_path='/srv/git/'; mkdir $repos_path$1; cd $repos_path$1; git init --bare; echo "Repository location: ssh://$USER@`cat /etc/HOSTNAME``pwd`"; cd -; }
This is sample output - yours may be different.
Initialized empty Git repository in /srv/git/mygit4/
Repository location: ssh://user@hostname/srv/git/mygit4
Creates a git repository in a predefined location.
This is sample output - yours may be different.
x220:/tmp/foo$ inotifywait -m -r .
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
./ CREATE bar
./ OPEN bar
./ ATTRIB bar
./ CLOSE_WRITE,CLOSE bar
Instead of looking through `lsof` results, use inotifywait!
watch 'ls -tr1 | tail -n1 | xargs tail'
This is sample output - yours may be different.
Watches for file modifications in the current directory and tails the file.
This is sample output - yours may be different.
$ echo -e "1\n2\n3" | tac
3
2
1
ls *.jpg | xargs -n1 -i cp {} /external-hard-drive/directory
This is sample output - yours may be different.
This is sample output - yours may be different.
This is sample output - yours may be different.
awk '!($0 in array) { array[$0]; print }' temp
This is sample output - yours may be different.
sed -n '1!G;h;$p' techie.txt
This is sample output - yours may be different.
find -iname "MyCProgram.c" -exec md5sum {} \;
This is sample output - yours may be different.
grep -A 3 -i "example" demo_text
This is sample output - yours may be different.
This is sample output - yours may be different.
find . -name .git -print0 | while read -d $'\0' g; do echo "$g"; cd "$g"; git gc --aggressive; cd -; done
This is sample output - yours may be different.
git gc should be run on all git repositories every 100 commits. This will help do do so if you have many git repositories ;-)
ps -e -m -o user,pid,args,%mem,rss | grep Chrome | perl -ne 'print "$1\n" if / (\d+)$/' | ( x=0;while read line; do (( x += $line )); done; echo $((x/1024)) );
This is sample output - yours may be different.
How much memory is chrome sucking?
This is sample output - yours may be different.
This is sample output - yours may be different.
This is sample output - yours may be different.
This is sample output - yours may be different.
renice -20 -g 2874 (2784 found with ps -Aj)
This is sample output - yours may be different.
cat /dev/ttyS2 | hexdump -C
This is sample output - yours may be different.
This is sample output - yours may be different.
if you cd into a directory then cd into another directory somewhere else then you run the cd - command you will go to the previous directory you was in!! To go back to the other directory just run it again. So if you are working in 2 different directories then this is the perfect command for you.
find . -type f -a \! -links 1
This is sample output - yours may be different.
./.bash_logout
./.bash_styles
./.dir_colors
./dotfiles/home/.bash_logout
./dotfiles/home/.bash_styles
./dotfiles/home/.dir_colors
./dotfiles/home/.gitignore_global
./dotfiles/home/.nvidia-settings-rc
./dotfiles/home/.taskrc
./dotfiles/showcolors
./.dropbox-dist/dropbox
./.dropbox-dist/library.zip
./.gitignore_global
./.nvidia-settings-rc
./.taskrc
libpurple likes to hardlink files repeatedly. To ignore libpurple, use sed: | sed '/\.\/\.purple/d'
melt dvgrab-010.m2t meta.attr.titles=1 meta.attr.titles.markup=#timecode# -attach data_show dynamic=1
This is sample output - yours may be different.