Search Results

Search: Posts Made By: jville
1,166
Posted By jville
mkdir -p tie_n_suite/{HR,Manufacturing,sales}
mkdir -p tie_n_suite/{HR,Manufacturing,sales}
847
Posted By jville
cat filename | tr '\\' '/' > filename.mod
cat filename | tr '\\' '/' > filename.mod
3,130
Posted By jville
try this one a=`sqlplus -s...
try this one



a=`sqlplus -s $db_user/$db_pwd@$db_sid << EOF
set pagesize 0 feedback off verify off heading off echo off
select ACK_PARTY_NAME,bus_event_seq_nbr from bus_event where ...
899
Posted By jville
try this .... you are missing an "Else" if...
try this ....
you are missing an "Else"

if [[ -s $1 ]]
then
echo "File $1 FOUND!"
exit 0
else
echo "File $1 NOT FOUND"
exit 1

fi
7,892
Posted By jville
that a look here...
that a look here https://www.unix.com/shell-programming-scripting/25658-removing-control-ms-m.html
3,602
Posted By jville
# !/bin/bash output() { ls -l /var/tmp...
# !/bin/bash
output()
{
ls -l /var/tmp |awk '$0 !~ /^F/' |awk '{print $5"\t" $6}'| sed 's/'%'//' >/tmp/bdflist
}

panic ()
{
while read percent dir
do
if [[ $percent -ge...
7,381
Posted By jville
try using ll | awk '{print $6$7$8}'
try using

ll | awk '{print $6$7$8}'
6,084
Posted By jville
Try this #this script renames schematic...
Try this


#this script renames schematic file for model year change

#my = model year prefix
my="lsd"
for i in `ls lsb*`
do
old=$i
new=`echo $i | cut -c4 -c30`
done
mv $i $my$new...
Showing results 1 to 8 of 8

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