IT Base of Knowledge’s Weblog

October 31, 2008

Deactivate beep in console mode linux

Filed under: Linux — itbdc @ 3:11 pm

setterm -blength 0

October 17, 2008

How to know size of a binarie in sql

Filed under: Uncategorized — itbdc @ 4:52 pm

datalength(binary)

October 15, 2008

Kill a process with a command on Windows

Filed under: Windows — itbdc @ 9:31 am

taskkill /F /IM notepad.exe >nul 2>&1

October 14, 2008

Select the end of a chain

Filed under: Bash, Linux — itbdc @ 8:40 am
#:~$ toto="bonjour le monde"
#:~$ echo ${toto:$((${#toto}-10))}
r le monde

${var:x} : extract sub chain of $var from char n° x to the end.
$((….)) : allow to do calculation

Blog at WordPress.com.