You are on page 1of 2

Assignment-1

bca@bca-desktop-3:~$ pwd

/home/bca

bca@bca-desktop-3:~$ mkdir exercise1

bca@bca-desktop-3:~$ cd exercise1

bca@bca-desktop-3:~/exercise1$ cat > file1.txt

This is text file

Here is last line

^Z

[1]+ Stopped cat > file1.txt

bca@bca-desktop-3:~/exercise1$ mkdir subdir1

bca@bca-desktop-3:~/exercise1$ cd subdir1

bca@bca-desktop-3:~/exercise1/subdir1$ cat file1.txt

cat: file1.txt: No such file or directory

bca@bca-desktop-3:~/exercise1/subdir1$ cd ..

bca@bca-desktop-3:~/exercise1$ wc -l file1.txt

2 file1.txt

bca@bca-desktop-3:~/exercise1$ date --set="20200606 22:15"

date: cannot set date: Operation not permitted

Sat Jun 6 22:15:00 IST 2020

bca@bca-desktop-3:~/exercise1$ date

Fri Sep 30 20:24:34 IST 2022

bca@bca-desktop-3:~/exercise1$ date +'%y'


22

You might also like