mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-25 05:19:57 +00:00
Just output the date (not hours and minutes) in ls as RTC is fixed to 2018-01-01 00:01. Issue #4371
9 lines
136 B
Bash
9 lines
136 B
Bash
#!/bin/bash
|
|
ls="ls -la --time-style=+%F"
|
|
|
|
$ls file_vault/
|
|
$ls file_vault/dir_1
|
|
cat file_vault/file_1
|
|
cat file_vault/dir_1/file_2
|
|
exit 0
|