Deutsch English Français Italiano |
<lcp7qiF3bnqU2@mid.individual.net> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: "Carlos E. R." <robin_listas@es.invalid> Newsgroups: comp.os.linux.misc Subject: Re: tar problem Date: Mon, 10 Jun 2024 23:00:02 +0200 Lines: 68 Message-ID: <lcp7qiF3bnqU2@mid.individual.net> References: <v44em0$3i8j8$1@dont-email.me> <wwvo78auj35.fsf@LkoBDZeT.terraraq.uk> <F_OdnckCE_opY_j7nZ2dnZfqn_udnZ2d@giganews.com> <v46oc6$dn9v$1@dont-email.me> <v46ruq$etuo$1@dont-email.me> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: individual.net pv/m/wP40wsIhFgVzrtGzgbnxSco5LuJhL1IpKScpI1Pw9RyjG Cancel-Lock: sha1:JE+TfAIFNPrTS2aB9+Rb1Xv3GDE= sha256:X76koq7+HQMj9s6rMCHM8/ZTtfMVBojrjam98ULqTY8= User-Agent: Mozilla Thunderbird Content-Language: en-CA, es-ANY In-Reply-To: <v46ruq$etuo$1@dont-email.me> Bytes: 3409 On 2024-06-10 14:35, Lew Pitcher wrote: > On Mon, 10 Jun 2024 11:34:30 +0000, db wrote: > >> On Sun, 09 Jun 2024 19:12:52 +0000, Robert Heller wrote: >> >>> At Sun, 09 Jun 2024 18:22:38 +0100 Richard Kettlewell >>> <invalid@invalid.invalid> wrote: >>> >>> >>>> db <dieterhansbritz@gmail.com> writes: >>>>> I like to make life easy so I wrote a one-line script for extracting >>>>> the contents of a tar file. I copied it into the /bin directory so I >>>>> can run it from anywhere. >>>>> I tried it out in a test directory where I had it, and where there is >>>>> a small test tar file. Here is the dialogue from running it, using >>>>> both the local script and the one in /bin: >>>>> >>>>> ~/tartest> ls tarx test.tar.gz ~/tartest> cat tarx tar -xf $1.tar.gz >>>>> ~/tartest> cat ~/bin/tarx tar -xf $1.tar.gz ~/tartest> ./tarx test >>>>> ~/tartest> ls tarx test test.tar.gz ~/tartest> del -r test >>>>> ~/tartest> tarx test tar (child): test: Cannot open: No such file or >>>>> directory tar (child): Error is not recoverable: exiting now tar: >>>>> Child returned status 2 tar: Error is not recoverable: exiting now >>>>> >>>>> Why doesn't it work from bin/ ? >>> >>> What does 'which tarx' show? Does it show /bin/tarx? >>> >>> Note: you should *never* put random programs in /bin (or even /usr/bin). >>> The only programs/files in these directories should be ones installed >>> by your package management system. /bin is reserved for core / early >>> boot programs and others would be in /usr/bin. >>> >>> Locally provided programs should be in either /usr/local/bin or /opt/bin >>> (depending on your file system usage philosiphy). These directories >>> can/should be added to your $PATH. *Personally* provided programs >>> should be in $HOME/bin, and this directory can be added to your $PATH as >>> well. >>> >>> >>>> Probably /bin/tarx isn't the same as ./tarx. What does >>>> cat /bin/tarx >>>> show? >>>> >> >> I already showed that, the two cat.. statements. > > Sorry, but no, you didn't. > > You showed us > ~/tartest> cat tarx > which gave the contents of ~/tartest/tarx, and > ~/tartest> cat ~/bin/tarx > which gave the contents of ~/bin/tarx > > You haven't shown the contents of /bin/tarx There is no proof that such a file exists. > Nor have you shown that there is no other version of your > tarx script in your PATH. That is the question to ask first :-) -- Cheers, Carlos E.R.