I've got all my winDOH!s apps converted to linux equivalents and working fine. The last one I have to do is get my M$money stuff working in a linux app. NE1 got ne ideas on a linux money management prog that can import the m$money files? Once this is done, I can fvck M$ off once and for all...
Using openoffice.org 1.0 and SuSE 7.2, I'm getting the error message
I18N: XWindow system doesn't support locale "LC_TYPE=en_GB@euro;LC_NUMERIC=en_GB@euro....."
Anyone any ideas? I have 0.6.38 working perfectly.
TIA
Steve.
Using openoffice.org 1.0 and SuSE 7.2, I'm getting the error message
I18N: XWindow system doesn't support locale "LC_TYPE=en_GB@euro;LC_NUMERIC=en_GB@euro....."
Anyone any ideas? I have 0.6.38 working perfectly.
TIA
Steve.
This works in ksh assuming a command line parameter of a valid date in the format YYYYMMDD.
#!/bin/ksh
yr=$(echo $1 | cut -c1-4)
mth=$(echo $1 | cut -c5-6)
day=$(echo $1 | cut -c7-8)
while [ $mth -gt 1 ]; do
mth=$(($mth - 1))
set $(cal $mth $yr)
shift $(($# - 1))
day=$((day + $1))...
Using ksh try:
read n
if [ ! -n "$n" -o -n "$(echo $n | sed 's/[0-9]//g')" ]; then
echo "It is not a number"
else
echo "It is a number"
fi
Steve.
I'm getting the following error:
awk: input line script_name contains more than 3,000 characters.
source line is 1
It only happens intermittently, however the file is processed correctly. When I run another awk script against the input file, it tells me the longest line is 174 chars. As it's...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.