Search Results

Search: Posts Made By: dbiggied
6,534
Posted By Chubler_XL
There is a known bug that stops rename working...
There is a known bug that stops rename working correctly if the underlying filesystem doesn't support hard links:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=308561

So unless you can have...
6,534
Posted By sea
Have you tried: cd remotepath lcd localpath ...
Have you tried:
cd remotepath
lcd localpath
put localfile
mv remotefileA remotefileB

Or to create a 'tempfile' with the proper name in advance (local), upload that and delete it when done.
...
1,642
Posted By joeyg
One thing that comes to mind is the possibility...
One thing that comes to mind is the possibility for embedded <CR> and/or <LF> characters.
Can you create simple one-line files (manually typed, or carefully cut/paste) and verify that this is not...
6,585
Posted By Franklin52
awk 's != FILENAME && /pattern/{print FILENAME,...
awk 's != FILENAME && /pattern/{print FILENAME, $0; s=FILENAME}' file1 file2 ....
Or with gawk:
gawk '/pattern/{print FILENAME, $0; nextfile}' file1 file2 ....
8,321
Posted By balajesuri
perl -e 'use POSIX qw/strftime/; @x = split /\//,...
perl -e 'use POSIX qw/strftime/; @x = split /\//, $ARGV[0]; print strftime("%a", 0, 0, 0, $x[1], $x[0]-1, $x[2]-1900)' "10/22/2012"
Showing results 1 to 5 of 5

 
All times are GMT -4. The time now is 10:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy