Hello cobaka here - i.e. 'puppy' but @Grey explained cobaka is a 'dog'. Шенок is a 'puppy'. So I got that wrong too ....
Now, to explain the problem ... errr, my present problem ...
I wanted to change the owner of all the files in a directory from "webuser" to (preferably) spot or alternately the real "me" - #root. That's who 'the real puppy' thinks I am. 'The real puppy' does not know 'webuser' - and I have no idea from whence that name derived.
I used the terminal, typing in few commands to do this. I proceeded, picking all files beginning with 'a', then 'b' and so on.
My scheme was working (see below) You can see (in the snapshop of the screen) that spot owns the files at the top of the listing.
Lower down, starting at "i" the files are still owned by webuser (whoever that is!).
(Incidently - all the files in the directory came by extracting a *tar.gz file I got from github.)
So - here is the ROX window:
Ain't it lovely? spot owns forthload.asm etc. webuser owns io.c etc. May the fleas from one thousand camels infest the under-wear of web-user!
Of course I'm impatient. I can use a larger wild-card than ./a* or ./b*! (See code, below) And (of course) a 'dot' will signify any character in the alphabet.
Here is a copy of the last few lines of code I ran.
root# chown -c spot ./c*
changed ownership of './cond09.asm' to 502:1002
changed ownership of './cond09.inc' to 502:1002
changed ownership of './core.4' to 502:1002
changed ownership of './cross09.4' to 502:1002
root# chown -c spot ./e*
changed ownership of './engine.c' to 502:1002
changed ownership of './exampl.bas' to 502:1002
changed ownership of './extend09.4' to 502:1002
root# chown -c spot ./f*
changed ownership of './forthload.asm' to 502:1002
root# chown -c spot ./.* <--- this created the problem!
changed ownership of './.' to 502:1002
changed ownership of './..' to 502:0
changed ownership of './.~lock.README.doc#' to 502:1002
Uh-oh! The tilde character is commonly used to denote the root directory.
But I'm working in a directory called sbc09
It appears I changed ownership of files not intended, yes?
If 'yes' then "what have I done?". That's my "Q"!
Help!
Comment: I use bash/terminal somewhat - but I'm well below average competence.
That's why I need to ask.
cobaka