Directi Interview Question for Production Engineers


Country: India




Comment hidden because of low score. Click to expand.
0
of 0 vote

#! /bin/bash
cat $2 > temp
for i in $(cat $1)
do
    echo $(sed "s/^$i / /g" temp) > temp
done
cat temp >> $1
rm temp

- avikalpakundu July 21, 2015 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

cat $1 $2 | sort -u > target

- aperson March 13, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

cat b | while read line ; do
if ! grep "${line}" a > /dev/null 2>&1 ; then
echo ${line};
fi;
done >> a

- Anonymous March 30, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

cat b | while read line ; do
    if ! grep "${line}" a > /dev/null 2>&1 ; then
        echo ${line};
    fi;
done >> a

- patrickfmarques March 30, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

#!/bin/bash

src="$1"
dst="$2"

while read line; do
    for word in $line; do
	if ! grep -q "\b$word" $dst; then
	    echo -n "$word " >> $dst
	fi
    done
    echo " " >> $dst
done < $src

- Anonymous November 16, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

#!/bin/bash

src="$1"
dst="$2"

while read line; do
    for word in $line; do
	if ! grep -q "\b$word" $dst; then
	    echo -n "$word " >> $dst
	fi
    done
    echo " " >> $dst
done < $src

- Anonymous November 16, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

for word in `cat file1.txt`;do
	res=$(grep $word file2.txt)
	if [ -z ${res} ];then
		echo $word >> file2.txt
	fi
done

- mridhuljospax July 08, 2017 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

#!/bin/bash
cat phone2.txt>temp.txt
for line in `cat phone.txt`
do
for word in `echo $line`
do
sed -i "s/$word//g" temp.txt
done
done
cat temp.txt>>phone.txt

sed -i '/^[ ]*$/d' phone.txt

- gm March 15, 2021 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

cat test1.txt test2.txt > test3.txt

- Anonymous June 17, 2015 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More