5
mapping Character keysview story

http://unix.stackexchange.com – I really dont understand bash`s use of control characters. (HowTos)

5
Machine data not displaying every 15 Secondsview story

http://unix.stackexchange.com – The following script is meant to output "vmstat" for example every 15 seconds, but for some reason it only does this if there's activity or when I kill the script, in other cases it just sits there. #!/bin/bash #!/bin/sh ps -ef | grep -v grep | grep "vmstat 15" | awk '{ print $2 }' | xargs kill ps -ef | grep -v grep | grep "iostat 15" | awk '{ print $2 }' | xargs kill ps -ef | grep -v grep | (HowTos)

5
.bash_profile not being readview story

http://serverfault.com – So I am using CentOS 6.3 a fresh install and I was trying to add things to my path for OpenMPI so I edited my .bash_profile file to read: FOO='test' export FOO # Add support for MPI PATH=$PATH:/usr/lib64/openmpi/bin # User specific environment and startup programs PATH=$PATH:$HOME/bin export PATH Which apparently isn't being read when I start up a bash shell, my $PATH is without the /usr (HowTos)

5
Help with the For loop shell scriptview story

http://www.unix.com – Hi, I have multiple files in a directory. Each file will have a header.I have to check if any of the files has 0 rows other than the header then I have to delete the files. Here “ Empty file” in my case means a file has header information but no data. (HowTos)

5
Win_tile: Pekwm/Openbox... keyboard window tiling/"aerosnapping"view story

http://crunchbang.org – Okay. I have added to this.First of all, to get the keycodes for my keypad I followed this (http://crunchbang.org/forums/viewtopic. … 96#p259796). (HowTos)

6
HowTo: Linux Limit A Specific User’s Shell Account Network Bandwidth Using Bash Shellview story

https://www.linux.com –   I am using a bash shell under Ubuntu Linux operating system. Sometime I need to restrict my own Internet bandwidth for all my shell applications such as ftp, sftp, wget, curl and friends. How do I limit the network speed under bash without setting up a complicated firewall and tc rules as described here? I am using a bash shell under Ubuntu Linux operating system. (Software)

5
Move a screen session back to its original PIDview story

http://serverfault.com – Installed McMyAdmin (minecraft manager) on Ubuntu 12.04 32 bit. Wrote my own service to start McMyAdmin (.net app running in Mono) in its own screen session, and be able to inject proper McMyAdmin commands into that session with the init.d script. (HowTos)

5
Is there a way of color-highlighting paired brackets in shell (bash)?view story

http://unix.stackexchange.com – Does anyone know if there is a way reproducing the same behaviour many text editors provide for colour-highlighting the syntax operators such as brackets or curly brackets. It would be very useful for complex one-liners in the terminal. Example of the functionality I am talking about (from VIM). (HowTos)

5
Login other bash ttys after logging in to oneview story

http://unix.stackexchange.com – Is there a way to login certain (or all) ttys after logging into one? I don't want auto-login because I still want to login once (for security). I've looked into things like "screen" but they are rather cumbersome and don't work with some programs (e.g. fbgs). Is there a command to simulate logging in to other ttys? (HowTos)

5
Using login command in Ubuntuview story

http://askubuntu.com – I would like to ask you about login command in bash shell Ubuntu linux... I entered #login then it asks me about username and password.. Is this a way to log in with other users account? (HowTos)