Search Results

Search: Posts Made By: bineshb
3,258
Posted By rdcwayx
for i in `seq 2000 20 4060` do cp...
for i in `seq 2000 20 4060`
do
cp Run${i}.dat <your_directory>
done
3,258
Posted By Shell_Life
#!/usr/bin/ksh typeset -i mSeq=2000 while [[...
#!/usr/bin/ksh
typeset -i mSeq=2000
while [[ ${mSeq} -le 4060 ]]; do
mFName='Run'${mSeq}'.dat'
cp ${mFName} <your_directory>
mSeq=${mSeq}+20
done
27,247
Posted By bhargav
Try this ... cp `ls --ignore=file1`...
Try this ...


cp `ls --ignore=file1` destinationDir
281,273
Posted By Neo
Simple rules of the UNIX.COM forums:
RULES OF THE UNIX AND LINUX FORUMS

For the latest version of the community rules (the official community rules page), please visit here. (https://www.unix.com/misc.php?do=cfrules)


No flames,...
Showing results 1 to 4 of 4

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