command Flashcards

1
Q

ls cds.log

A

to see if the file cds.log exist in the current directory “only to display not to open the file or dir”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

wild card characters

A
  • and ? are called wildcard characters.
  • any character wildcard (matches any character or string of characters, including blanks.)

? One character wildcard (? matches only one and only one character)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

ln -s

A

Link file with symbol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what follows on LOGLVS

And what it is for?

A

LOGLVS is to compile the net list
(:cir netlist_filename)
(:con topcell name) to confine the netlist.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

PDRACULA process

A

/g draculaLVS.run
/f

To create the jxrun.com file and type the command.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What to do before PDRACULA but after LOGLVS?

A

Edit the draculaLVS.rul file to change the 4lines to match with the file you are running LVS to

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

ls hw*.gds

A

hw(any character or strings of characters) with .gds at the end

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

~username

A

username’s home directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

ls hw?.gds

A

all hw6.gds hw7.gds hw8.gds hw9.gds will listed (but not the hw10.gds or hw.gds)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

ls -l project

A

to list all the file in the project directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

cd ..

A

go to parent directory (one level up)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
Meanings of "options"
a,                        l, 
F,                        t,
h,                       r,
R,  and more.......
A

option(s) begins with - in the front following space after the command.
ls -a list all entires, including dot files
ls -al list all in long format (additional information)
ls -t list file on time stamp.
ls -hl list file in human read able format
ls -r list file in reverse “alphabet” order
ls -rt list file in “time” reverse order
ls -F list file with “file type” attached to it
ls -R list all the dir and file and sub files and dir all the way to bottom levels

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

ls hw??.gds

A

list all the the file hw(2character excluding space) with .gds at the end.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

~/ “tilde”

A

my (current) home directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

. “dot”

A

current directory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

ls -tF ~gilbert_c/project

A

to list all the file in gilbert’s project directory in time stamp order with file type attached to it.

17
Q

cd

A

change directory

18
Q

ls

A

list the name(s) of file(s) and director(ies) in your current directory. Option(s) can be applied to show hidden “dot” files.

19
Q

What are 4 lines on draculaLVS that need to be changed to wait?

A

1st. Tope filename
2ns. file path /filename.gds
3rd. Filename (will add .lvs)
4rth. Filename.out

20
Q

pwd

A

Print your work directory

21
Q

Remove directory

A

rm directory (empty) /rm -r directory (recursive)

22
Q

rename file/folder

A

mv file file_rename