hlinux.blogspot.com hlinux.blogspot.com

hlinux.blogspot.com

Linux Tips and Tricks

Linux Tips and Tricks. Monday, May 29, 2006. Linux users that can only perform predefined tasks. One of my clients want to create a user in his server that can only perform certain tasks, idiot proof, using a menu written in bash. I have to make sure that:. 1) When the user logs in, the menu will be shown immediately. This is easy, I'll just launch the menu script in .bash profile or .bash rc. 2) The user must not be able to terminate the script without logging out. Posted by Heherson Tan at 8:56 AM.

http://hlinux.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR HLINUX.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

October

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.7 out of 5 with 13 reviews
5 star
9
4 star
4
3 star
0
2 star
0
1 star
0

Hey there! Start your review of hlinux.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

FAVICON PREVIEW

  • hlinux.blogspot.com

    16x16

  • hlinux.blogspot.com

    32x32

  • hlinux.blogspot.com

    64x64

  • hlinux.blogspot.com

    128x128

CONTACTS AT HLINUX.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Linux Tips and Tricks | hlinux.blogspot.com Reviews
<META>
DESCRIPTION
Linux Tips and Tricks. Monday, May 29, 2006. Linux users that can only perform predefined tasks. One of my clients want to create a user in his server that can only perform certain tasks, idiot proof, using a menu written in bash. I have to make sure that:. 1) When the user logs in, the menu will be shown immediately. This is easy, I'll just launch the menu script in .bash profile or .bash rc. 2) The user must not be able to terminate the script without logging out. Posted by Heherson Tan at 8:56 AM.
<META>
KEYWORDS
1 0 comments
2 will produce
3 bin/bash
4 file=$1
5 exec
6 read line
7 while $line
8 done
9 1 comments
10 about me
CONTENT
Page content here
KEYWORDS ON
PAGE
0 comments,will produce,bin/bash,file=$1,exec,read line,while $line,done,1 comments,about me,name,heherson tan,links,time management,c# adventures,realtime sms gateway,previous,archives,related sites
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Linux Tips and Tricks | hlinux.blogspot.com Reviews

https://hlinux.blogspot.com

Linux Tips and Tricks. Monday, May 29, 2006. Linux users that can only perform predefined tasks. One of my clients want to create a user in his server that can only perform certain tasks, idiot proof, using a menu written in bash. I have to make sure that:. 1) When the user logs in, the menu will be shown immediately. This is easy, I'll just launch the menu script in .bash profile or .bash rc. 2) The user must not be able to terminate the script without logging out. Posted by Heherson Tan at 8:56 AM.

INTERNAL PAGES

hlinux.blogspot.com hlinux.blogspot.com
1

Linux Tips and Tricks: Linux users that can only perform predefined tasks

http://www.hlinux.blogspot.com/2006/05/linux-users-that-can-only-perform.html

Linux Tips and Tricks. Monday, May 29, 2006. Linux users that can only perform predefined tasks. One of my clients want to create a user in his server that can only perform certain tasks, idiot proof, using a menu written in bash. I have to make sure that:. 1) When the user logs in, the menu will be shown immediately. This is easy, I'll just launch the menu script in .bash profile or .bash rc. 2) The user must not be able to terminate the script without logging out. Posted by Who IsHe at 8:56 AM.

2

Linux Tips and Tricks: querying a mysql table that has a '-' in its name

http://www.hlinux.blogspot.com/2006/05/querying-mysql-table-that-has-in-its.html

Linux Tips and Tricks. Saturday, May 13, 2006. Querying a mysql table that has a '-' in its name. Simply querying the table like:. Mysql SELECT * FROM people-table;. ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server ve rsion for the right syntax to use near '-table' at line 1. The answer is, we must enclose the table name with the tick ` symbol. Mysql SELECT * FROM `people-table`;. Will give the desired results. Posted by Who IsHe at 7:37 AM.

3

Linux Tips and Tricks: Bash/Sed implementation of PHP add_slashes function

http://www.hlinux.blogspot.com/2006/05/bashsed-implementation-of-php.html

Linux Tips and Tricks. Saturday, May 13, 2006. Bash/Sed implementation of PHP add slashes function. This script will read lines from stdin end replace the ' with ' This is perfect for parsing text files and composing SQL queries. Filename: add slashes.sh. Echo "$line" sed "s/'/ '/g". Usage example: echo "Heherson's dog" ./add slashes.sh will produce "Heherson 's dog". Posted by Who IsHe at 7:16 AM. Nice one. Very useful. Thanks!

4

Linux Tips and Tricks: May 2006

http://www.hlinux.blogspot.com/2006_05_01_archive.html

Linux Tips and Tricks. Monday, May 29, 2006. Linux users that can only perform predefined tasks. One of my clients want to create a user in his server that can only perform certain tasks, idiot proof, using a menu written in bash. I have to make sure that:. 1) When the user logs in, the menu will be shown immediately. This is easy, I'll just launch the menu script in .bash profile or .bash rc. 2) The user must not be able to terminate the script without logging out. Posted by Who IsHe at 8:56 AM. Bash/Se...

5

Linux Tips and Tricks: How to read a file line by line in bash scripting?

http://www.hlinux.blogspot.com/2006/05/how-to-read-file-line-by-l_114753041616336327.html

Linux Tips and Tricks. Saturday, May 13, 2006. How to read a file line by line in bash scripting? This script reads demonstrate how to read a file line by line. Redirect the contents of the file to stdin. This line can be removed if the lines will be piped to this script. Process the line here. Posted by Who IsHe at 7:24 AM. Bash/Sed implementation of PHP add slashes functio.

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL PAGES IN THIS WEBSITE

5

LINKS TO THIS WEBSITE

cpp-programming.blogspot.com cpp-programming.blogspot.com

C/C++ Programming Tips and Tricks: February 2006

http://cpp-programming.blogspot.com/2006_02_01_archive.html

C/C Programming Tips and Tricks. Wednesday, February 01, 2006. Char* from static variables. When a function expects a char* parameters, it is not possible to pass a char[][] variable, which should have allowed us to avoid dynamic memory allocation. Merely casting the char[][] will produce undesirable results. Example:. Void iterate(char* a, count) {. For(int i=0; i&#60count; i=". Int main () {. Char str array[32][128];. Iterate( char* )(str array), 32);. However, we can do this:. Char* str array[32];.

cpp-programming.blogspot.com cpp-programming.blogspot.com

C/C++ Programming Tips and Tricks: January 2006

http://cpp-programming.blogspot.com/2006_01_01_archive.html

C/C Programming Tips and Tricks. Wednesday, January 18, 2006. Optimization by loop re-factoring. For(int i = 0; i MAX; i). For(int i = 0: i ID; i). For(int i = ID; i MAX; i=". Posted by Who IsHe @ 10:00 PM. Linux Tips and Tricks. Valgrind - Ultimate debugger. Char* from static variables. Optimization by loop re-factoring.

UPGRADE TO PREMIUM TO VIEW 1 MORE

TOTAL LINKS TO THIS WEBSITE

3

OTHER SITES

hlinterstellar.com hlinterstellar.com

Hali Lake Interstellar

HL Interstellar supports the quest of discovering lost treasures the universe over by delivering premiere Info-Agent services before, during and after your sail. HL Interstellar was founded in 2942 by two former UEE. Data analysts and a UEE. Though a younger company than most in our industry, HL Interstellar collectively brings 18 years of experience as experts in our respective backgrounds. A unique behind the curtain training background within the UEE. Lost Treasure, Found. To ensure mission completion...

hlintranet.com hlintranet.com

Sign In

Sign me in automatically.

hlintrup.dk hlintrup.dk

Index of /

Proudly Served by Surftown at www.hlintrup.dk Port 80.

hlintsa.skyrock.com hlintsa.skyrock.com

Blog de hlintsa - hlintsa - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Bonjour à toutes et à tous! Voici un petit apperçu de l'univers dans lequel je suis. Ainsi que les gens qui compte énormément pour moi. Je suis comme tous le mondes, j'ai mes qulités et mes défauts alors si vous êtes là pour critiquer, sachez que vous n'êtes pas les bienvenues et vous pries de vous abstenir! Je vous souhaite la Bienvenue sur mon blog et Bonne visite! Mise à jour :. Abonne-toi à mon blog! Ny Zoua Hli Ntsa. DATE ET LIEU DE NAISSANCE.

hlintula.portfoliobox.io hlintula.portfoliobox.io

Heidi Lintula

hlinux.blogspot.com hlinux.blogspot.com

Linux Tips and Tricks

Linux Tips and Tricks. Monday, May 29, 2006. Linux users that can only perform predefined tasks. One of my clients want to create a user in his server that can only perform certain tasks, idiot proof, using a menu written in bash. I have to make sure that:. 1) When the user logs in, the menu will be shown immediately. This is easy, I'll just launch the menu script in .bash profile or .bash rc. 2) The user must not be able to terminate the script without logging out. Posted by Heherson Tan at 8:56 AM.

hlinux.com hlinux.com

For Sale Domain !

This page uses frames. The current browser you are using does not support frames.

hlinux.net hlinux.net

Domain Default page

If you are seeing this message, the website for is not available at this time. If you are the owner of this website, one of the following things may be occurring:. You have not put any content on your website. Your provider has suspended this page. Please login to to receive instructions on setting up your website.

hlinv.com hlinv.com

What do we do? How do we do it? Hutchinson Lilley Investments LLP (HLI) is a boutique investment business founded in 2000 and specialising in the management of balanced portfolios. Clients include high net worth investors, family offices, charities, trusts and private banks . Alongside the investment business HLI provides Regulatory Umbrella services which incubate new investment managers and advisors until they can become established and operate independently. PRIVACY, COOKIES AND SECURITY.

hlinv.net hlinv.net

Hutchinson Lilley Investments | Safe, durable and actively managed investments

HLI Regulatory Umbrella Model. Safe, durable and actively managed investments. HLI specialises in the secure management of balanced portfolios for high net worth investors, family offices, charities, trusts and private banks. Join our mailing list and get access to our market commentary. Subscribe to HLI Reports. HLI is authorised and regulated by the Financial Conduct Authority. The interest rate cycle. Read more ». On Bankruptcy and Davos. Read more ». Markets in 2017- an overview. Read more ».

hlinvest.co.uk hlinvest.co.uk

Home

Highland Line Investments Limited is a private limited company making direct investments in operating assets in the European Union. We operate out of London and Vienna and our core expertise is in property related assets,. We work with banks in their programs to sell non performing loans and real estate in possession,. We look to partner with small business in restructuring and expansion activities,. Contact: info@hlinvest.co.uk.